Crates.io | bevy-animated-text |
lib.rs | bevy-animated-text |
version | 0.1.0 |
source | src |
created_at | 2024-07-12 13:51:41.042498 |
updated_at | 2024-07-12 13:51:41.042498 |
description | Basic animated text plugin for Bevy |
homepage | https://github.com/ickshonpe/bevy-animated-text |
repository | https://github.com/ickshonpe/bevy-animated-text |
max_upload_size | |
id | 1300718 |
size | 118,090 |
Basic animated text plugin for Bevy.
In order to work nicely with Bevy's exisiting text implementation, it's limited to only animating the positions of the glyphs.
Support for scalings, rotations and colors is possible but would need a much more complicated plugin,
probably requiring alternatives to some of the existing systems, components and bundles, and/or limiting users to a single glyph per TextSection
.
cargo run --example hello_world
cargo run --example text2d
cargo run --example ui
The text2d
example is the most complete.