From 85765d758cda9f31d58708066cdb9617ad9392ab Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 25 Aug 2026 21:55:07 +0200 Subject: [PATCH] add third-party animation plugin to docs --- docs/_sidebar.md | 1 + docs/plugins/animation.md | 7 +++++++ docs/sidebar.json | 4 ++++ 3 files changed, 12 insertions(+) create mode 100644 docs/plugins/animation.md 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" } ] },