This Crate is a plugin for Bevy to parse SpriteSheet XMLs! Most Useful in using assets from Adobe Animate.
Here below is some example code on how'd you use the crate:
```rust ignore use bevy::prelude::; use bevy_xml::;
fn main()
{
app
.addsystem(bevyxml::tickanimations)
.run();
}
fn yourstartupsystem(mut textureatlases: ResMut
match xml {
Some(c) =>
{
c.add_anim_from_prefix("Epic Animation", false, 24); // anim name, is the animation looped?, fps
c.apply_offsets(); // applies inital offset
c.set_anim("Epic Animation", bf, true); // sets the current animation
// anim name^ sprite^ ^ set the current frame to zero?
commands.spawn(c);
},
None =>
{
error!("Failed to Parse XML!");
}
}
}
```
This crate now has an animation system, support for 3D sprites and much more!
I've never published a crate before so if there are any issues please give me feedback!