Add function to get Handle<Texture>
from TextureAtlas
#3177
Labels
A-Rendering
Drawing game state to the screen
C-Usability
A targeted quality-of-life change that makes Bevy easier to use
What problem does this solve or what need does it fill?
Currently, there is no way to get the
Handle<Texture>
at a given index from aTextureAtlas
. This means thatTextureAtlas
es can't be used in places that only acceptHandle<Texture>
s, such asColorMaterial
s (I'm running into this issue becauseImageBundle
accepts aHandle<ColorMaterial>
).What solution would you like?
Add a way to get a
Handle<Texture>
from aTextureAtlas
. Perhaps add a function,TextureAtlas::(&self, index: u32) -> Option<Handle<Texture>>
orTextureAtlas::(&self, index: u32) -> Handle<Texture>
.What alternative(s) have you considered?
For any bundle, function, etc. that takes a
Handle<Texture>
, add an alternative that takes aHandle<TextureAtlas>
and index.Alternatively, if just a
ColorMaterial
could be generated from aHandle<TextureAtlas>
and index, this would satisfy my particular use case.Thank you!
The text was updated successfully, but these errors were encountered: