Bevy Heterogenous Texture Atlas Loader allows you to load heterogenous texture atlases according to a RON file manifest.
It works, but the implementation could be improved a lot. Any suggestions would be very welcome.
Suports Bevy 0.6 #
Add the TextureAtlasManifestLoaderPlugin
to your Bevy App.
Load the texture atlas manifest using the asset server:
rust
let manifest: Handle<TextureAtlasManifest> = asset_server.load("manifest.ron");
The plugin listens for AssetServer events. Once the manifest file is loaded it will automatically begin loading the corresponding image file.
Once the image file is loaded, it constructs the TextureAtlas and then emits a TextureAtlasManifestLoadedEvent event. A strong handle to the new atlas can be retrieved from that event's atlas
field.
#
Given a sprite sheet with irregular sized and positioned sprites.
First create a manifest.ron
manifest file in your assets folder
(
"example.png",
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.
(
"example.png",
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
),
])
)
manifest.ron
.name: ""
to skip naming a sprite in a NamedSprites
listAdd this crate's dependency to your project's Cargo.toml
[dependencies]
section
bevy_heterogeneous_texture_atlas_loader = "0.1.2"
Write the app
```rust use bevy::prelude::; use bevy_heterogeneous_texture_atlas_loader::;
fn setup(
mut commands: Commands,
assetserver: Res
fn onatlasloaded(
mut commands: Commands,
mut events: EventReader
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(TextureAtlasManifestLoaderPlugin) .addstartupsystem(setup) .addsystem(onatlas_loaded) .run(); } ```
Result
#
You need to keep a strong handle to the TextureAtlasManifest, otherwise the asset will be dropped before the TextureAtlas is created.