rsanim 0.6.0

A basic state machine for managing sprite animations
Documentation
[dependencies.bevy_platform]
version = "0.17"

[dev-dependencies.bevy]
version = "0.17"

[[example]]
name = "bevy"
path = "examples/bevy.rs"

[[example]]
name = "bevy_sm"
path = "examples/bevy_sm.rs"

[lib]
name = "rsanim"
path = "src/lib.rs"

[package]
authors = ["Hrafn Orri Hrafnkelsson <hrafnorri@bitcrow.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["game-development"]
description = "A basic state machine for managing sprite animations"
edition = "2024"
keywords = ["gamedev", "animation", "bevy"]
license = "MIT OR Apache-2.0"
name = "rsanim"
readme = "README.md"
repository = "https://github.com/ironpeak/rsanim"
version = "0.6.0"

[[test]]
name = "animator"
path = "tests/animator.rs"

[[test]]
name = "animator_error"
path = "tests/animator_error.rs"

[[test]]
name = "animator_new"
path = "tests/animator_new.rs"

[[test]]
name = "animator_parameters"
path = "tests/animator_parameters.rs"

[[test]]
name = "current_state"
path = "tests/current_state.rs"

[[test]]
name = "example"
path = "tests/example.rs"

[[test]]
name = "example_sm"
path = "tests/example_sm.rs"

[[test]]
name = "lib"
path = "tests/lib.rs"

[[test]]
name = "state_machine"
path = "tests/state_machine.rs"

[[test]]
name = "state_machine_error"
path = "tests/state_machine_error.rs"

[[test]]
name = "state_machine_new"
path = "tests/state_machine_new.rs"

[[test]]
name = "state_machine_parameters"
path = "tests/state_machine_parameters.rs"

[[test]]
name = "state_machine_state"
path = "tests/state_machine_state.rs"

[[test]]
name = "transition"
path = "tests/transition.rs"

[[test]]
name = "transition_end_state"
path = "tests/transition_end_state.rs"

[[test]]
name = "transition_start_state"
path = "tests/transition_start_state.rs"

[[test]]
name = "transition_trigger"
path = "tests/transition_trigger.rs"