Skip to content
Snippets Groups Projects
Verified Commit 4ea01137 authored by Louis's avatar Louis :fire:
Browse files

Bump Version

parent 4ca9d31d
No related branches found
No related tags found
No related merge requests found
[package] [package]
name = "micro_banimate" name = "micro_banimate"
version = "0.10.0" version = "0.11.0"
edition = "2021" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
description = "Easily manage complex Bevy 2D sprite animations" description = "Easily manage complex Bevy 2D sprite animations"
......
...@@ -14,26 +14,21 @@ Easily manage complex 2D sprite animations ...@@ -14,26 +14,21 @@ Easily manage complex 2D sprite animations
### Simple Animations ### Simple Animations
TODO: Describe simple animations - A single list of frames to loop through based on a set framerate. Ideal for low-overhead animation of simple entities like a flickering lamp sprite
- A simple looping animation with a single set of frames and frame rate, no control needed or provided
### Sprite Animations ### Sprite Animations
TODO: Describe sprite animations - Associate one or more named animations with a sprite-having entity
- Easily switch between looping and one-off animations by name
- Sets the name of the animation to play, play the animation. Simple.
- Interrupt the current animation temporarily with an `AnimationOverride` - Interrupt the current animation temporarily with an `AnimationOverride`
### Directional Animations ### Directional Animations
TODO: Describe directional animations - Everything that a Sprite Animation does, but will automatically change between named animations based on the value of the associated `Directionality` component
- Includes a component for altering the name of a playing animation based on its value, representing direction
### Child Animations ### Child Animations
Adding a `ChildAnimation` to an entity with a Sprite and an animated parent will cause its status to by synced to it's `Parent` entity - Given an entity with a `Sprite` and a `ChildOf` relation, set the atlas index of the sprite based on the parent value
## Animation Sets ## Animation Sets
...@@ -98,6 +93,7 @@ frame_time = 100 ...@@ -98,6 +93,7 @@ frame_time = 100
| banimate version | bevy version | tilemap version | | banimate version | bevy version | tilemap version |
|---------------------|--------------|------------------------------------------| |---------------------|--------------|------------------------------------------|
| 0.11.0 | 0.16 | n/a |
| 0.10.0 | 0.15 | n/a | | 0.10.0 | 0.15 | n/a |
| 0.9.x | 0.14 | n/a | | 0.9.x | 0.14 | n/a |
| 0.8.0 | 0.13 | n/a | | 0.8.0 | 0.13 | n/a |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment