vleue_kinetoscope

Crates.iovleue_kinetoscope
lib.rsvleue_kinetoscope
version0.3.0-rc.1
sourcesrc
created_at2024-05-24 22:53:36.556406
updated_at2024-11-10 23:48:30.881063
descriptionAnimated GIF player for Bevy
homepagehttps://github.com/vleue/vleue_kinetoscope
repositoryhttps://github.com/vleue/vleue_kinetoscope
max_upload_size
id1251609
size1,396,824
publish (github:vleue:publish)

documentation

https://docs.rs/vleue_kinetoscope

README

vleue_kinetoscope

MIT/Apache 2.0 Doc Crate Bevy Tracking CI

Animated GIF and WebP player for Bevy.

animated-gif

Usage

System setup

Add the plugin to your app:

use bevy::prelude::*;
use vleue_kinetoscope::AnimatedImagePlugin;

fn main() {
    App::new()
        // Usually included with `DefaultPlugins`
        .add_plugins(AssetPlugin::default())
        .add_plugins(AnimatedImagePlugin);
}

Play an animated gif

Spawn an entity with the component AnimatedImageController:

use bevy::prelude::*;
use vleue_kinetoscope::*;

fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
    commands.spawn(AnimatedImageController::play(asset_server.load("cube.gif")));
}

Play an animated WebP

Spawn an entity with the component AnimatedImageController:

use bevy::prelude::*;
use vleue_kinetoscope::*;

fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
    commands.spawn(AnimatedImageController::play(asset_server.load("cube.webp")));
}

Bevy Support

Bevy vleue_kinetoscope
main main
0.15 0.3
0.14 0.2
0.13 0.1
Commit count: 33

cargo fmt