Utilities for loading Aseprite files into a Bevy application.

Provides an AssetLoader struct which directly reads .aseprite files without an intermediate import step. The loader adds Resources generated by the files' data. Systems can invoke the loader's methods to start loading files, or query the loading state.

Resources

This library creates several types of resources:

Configuration

This library exposes AseLoaderDefaultPlugin with default settings. This plugin initializes all of the above resources as Asset types, adds Loader and AseAssetLoader resources, and adds an importer system function to process loaded ase data.

For a custom configuration, import the constituent parts and add them to AppBuilder directly. The Texture resource is required to be initialized. Other asset types are optional.

Examples

```rs use bevy::prelude::*; use bevyase::asset::AseAsset; use bevyase::loader::{AseLoaderDefaultPlugin, Loader}; use std::path::Path;

// Initialize and run a bevy app with the default bevyase configuration. fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(AseLoaderDefaultPlugin) .addsystem(load_sprites.system()); }

// Get an aseprite asset and send it to the loader. pub fn loadsprites(assetserver: Res, mut loader: ResMut) { let h: Handle = asset_server.load(Path::new("sprites/hello.aseprite")); loader.add(h.clone()); } ``` See the documentation for lib.rs for more information.

Forked from https://github.com/alpine-alpaca/bevyprotoaseprite.

Example

cargo run --example animated --features="benimator"

TODOs