I want to write a small game using Bevy in Rust. Displaying a lot of sprites (10'000) is a problem if all of them are a separate SpriteBundle
. How do I get one entity to contain and display several Sprites?
I am aware of Fastest way to deal with many sprites in bevy-engine.