Bevy tracking crates.io docs.rs

Bevy Sprite Sheet Animation

This Crate Currently Can Create An Animated Sprite From A Sprite Sheet Generated In Adobe Animate Using The Sparrow-V2 Data Format

Disclaimer!

This Is In Early Development So Stuff Is Subject To Change

How To Use This Crate

This Example Uses Sparrow-V2, If Other Data Formats Are Supported You Can Of Course Also Use Them Similarly To This

```rust ignore // bevy version: 0.11.2 use bevy::prelude::*; use bevyssanim;

fn main() { App::new() .addplugins(DefaultPlugins) .addsystems(Startup, setup) .addsystems(Update, (jump, bevyssanim::sparrowv2::update_animations)) .run(); }

fn setup( mut commands: Commands, mut textureatlases: ResMut>, assetserver: Res, ) { // spawn camera since nothing would get rendered without it commands.spawn(Camera2dBundle::default());

// in assets/images/ you would have the player.png and player.xml files
// path to png and xml, texture atlases, asset server
let bundle = bevy_ss_anim::sparrow_v2::AnimatedSpriteBundle::new("images/player", &mut texture_atlases, &asset_server);

if let Some(mut bundle) = bundle {
    // animation name, animation prefix in xml, fps, looped, offset
    bundle.animated_sprite.add_animation_by_prefix("idle", "Idle", 24, true, Vec2::default());
    bundle.animated_sprite.add_animation_by_prefix("jump", "Jump", 24, false, Vec2::new(-5f32, 25f32));

    bundle.sprite_sheet_bundle.transform.scale = Vec3::new(0.5, 0.5, 0.5);

    // animation name, forced, texture atlas sprite, transform
    bundle.animated_sprite.play_animation("idle", true, &mut bundle.sprite_sheet_bundle.sprite, &mut bundle.sprite_sheet_bundle.transform);

    commands.spawn(bundle);
}

}

fn jump( input: Res>, mut query: Query<(&mut bevyssanim::sparrowv2::AnimatedSprite, &mut TextureAtlasSprite, &mut Transform)>, ) { for (mut animatedsprite, mut sprite, mut transform) in query.itermut() { if animatedsprite.animationisfinished { animatedsprite.playanimation("idle", true, &mut sprite, &mut transform); }

    if input.just_pressed(KeyCode::Space) && animated_sprite.current_animation().name != "jump" {
        animated_sprite.play_animation("jump", true, &mut sprite, &mut transform);
    }
}

}

```