Bevy Heterogenous Texture Atlas Loader

Bevy Heterogenous Texture Atlas Loader allows you to load heterogenous texture atlases according to a RON file manifest.

Suports Bevy 0.6 #

Basic usage

  1. Add the TextureAtlasManifestLoaderPlugin to your Bevy App.

  2. Load the texture atlas manifest using the asset server: rust let manifest: Handle<TextureAtlasManifest> = asset_server.load("manifest.ron"); The plugin will then load the atlas image and create the TextureAtlas asset automatically.

    Once the manifest is loaded, the handle can be accessed from the .atlas field, or directly using the asset path "manifest.ron#texture_atlas" like so:

    rust fn some_system( assets: Res<Assets<TextureAtlas>>, ... ) { let atlas = assets.get("manifest.ron#texture_atlas").unwrap(); ... );

#

Detailed Example

  1. First create a manifest.ron manifest file in your assets folder

    ( path: "example.png", width: 256, height: 256, sprites: Sprites ([ ( x: 18, y: 19, w: 46, h: 48 ), ( x: 93, y: 108, w: 32, h: 31 ), ( x: 176, y: 34, w: 20, h: 34 ), ]) ) Alternatively, you can give each sprite a unique name that can be used to look up their TextureAtlas index.

    ( path: "example.png", width: 256, height: 256, sprites: NamedSprites ([ ( name: "yellow", x: 18, y: 19, w: 46, h: 48 ), ( name: "face", x: 93, y: 108, w: 32, h: 31 ), ( name: "patches", x: 176, y: 34, w: 20, h: 34 ), ]) )

  2. Add this crate's dependency to your project's Cargo.toml [dependencies] section

    bevy_heterogeneous_texture_atlas_loader = "0.2"

  3. Write the app

    ```rust use bevy::prelude::; use bevy_heterogeneous_texture_atlas_loader::;

    fn setup( mut commands: Commands, assetserver: Res, ) { commands.spawnbundle(OrthographicCameraBundle::new2d()); let manifest: Handle = assetserver.load("manifest.ron"); commands.insert_resource(manifest); }

    fn onmanifestloaded( mut commands: Commands, mut events: EventReader>, atlases: Res>, manifests: Res>, ) { for event in events.iter() { match event { AssetEvent::Created { handle } => { if let Some(manifest) = manifests.get(handle) { let atlas = atlases.get("manifest.ron#textureatlas").unwrap(); commands .spawnbundle(SpriteBundle { texture: atlas.texture.clone(), ..Default::default() }); for i in 0..3 { let target = -200. * Vec3::X + (100. * i as f32 - 100.) * Vec3::Y; commands .spawnbundle(SpriteSheetBundle { sprite: TextureAtlasSprite::new(i), textureatlas: manifest.atlas.clone(), transform: Transform::from_translation(target), ..Default::default() }); } } }, _ => {} } } }

    fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(TextureAtlasManifestLoaderPlugin) .addstartupsystem(setup) .addsystem(onmanifest_loaded) .run(); } ```

  4. Result

    /assets/example.png