bevyfixedsprites

crates.io MIT/Apache 2.0 crates.io

Bevy sprites that have their own transform independent of the bevy transform hierarchy.

image

Each sprite's Transform has the same scale and rotation.

Supports Bevy 0.8

#

Cargo

toml [dependency] bevy_fixed_sprites = 0.2

Plugin

You need to add the FixedSpritePlugin to your Bevy App before you can draw a FixedSprite

rust use bevy_fixed_sprites::*; app.add_plugin(FixedSpritesPlugin);

Usage

For bevyfixedsprites' equivalents to regular bevy sprites use:

Examples

cargo run --example fixed_sprite cargo run --example hierarchy