diff --git a/docs/_sidebar.md b/docs/_sidebar.md index 7d0bddde..8c8828d4 100644 --- a/docs/_sidebar.md +++ b/docs/_sidebar.md @@ -44,5 +44,6 @@ - [Global App State](/plugins/global_app_state.md) - [Storage](/plugins/storage.md) - [Custom Plugins](/plugins/custom_plugins.md) + - [Animation](/plugins/animation.md) - Performance - [Lazy loading](/performance/lazy-loading.md) diff --git a/docs/plugins/animation.md b/docs/plugins/animation.md new file mode 100644 index 00000000..06bb332d --- /dev/null +++ b/docs/plugins/animation.md @@ -0,0 +1,7 @@ +# Animation plugin + +The Animation plugin is a third-party plugin for creating and controlling animations in Blits applications. It supports both sequential animations and timeline-based animations, with configurable easing, delays, repeats, and lifecycle callbacks. + +The plugin is maintained by a third party and is not part of the Blits core package. + +For installation instructions, examples, and the complete API reference, see the [Blits Animation Plugin documentation](https://blits-animation-plugin.bravaapps.com/). diff --git a/docs/sidebar.json b/docs/sidebar.json index dd0f54f4..3e987211 100644 --- a/docs/sidebar.json +++ b/docs/sidebar.json @@ -189,6 +189,10 @@ { "text": "Custom Plugins", "link": "/plugins/custom_plugins" + }, + { + "text": "Animation", + "link": "/plugins/animation" } ] },