Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add function to get Handle<Texture> from TextureAtlas #3177

Closed
Seldom-SE opened this issue Nov 24, 2021 · 3 comments
Closed

Add function to get Handle<Texture> from TextureAtlas #3177

Seldom-SE opened this issue Nov 24, 2021 · 3 comments
Labels
A-Rendering Drawing game state to the screen C-Usability A targeted quality-of-life change that makes Bevy easier to use

Comments

@Seldom-SE
Copy link

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 a TextureAtlas. This means that TextureAtlases can't be used in places that only accept Handle<Texture>s, such as ColorMaterials (I'm running into this issue because ImageBundle accepts a Handle<ColorMaterial>).

What solution would you like?

Add a way to get a Handle<Texture> from a TextureAtlas. Perhaps add a function, TextureAtlas::(&self, index: u32) -> Option<Handle<Texture>> or TextureAtlas::(&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 a Handle<TextureAtlas> and index.

Alternatively, if just a ColorMaterial could be generated from a Handle<TextureAtlas> and index, this would satisfy my particular use case.

Thank you!

@Seldom-SE Seldom-SE added C-Feature A new feature, making something new possible S-Needs-Triage This issue needs to be labelled labels Nov 24, 2021
@alice-i-cecile alice-i-cecile added A-Rendering Drawing game state to the screen C-Usability A targeted quality-of-life change that makes Bevy easier to use and removed C-Feature A new feature, making something new possible S-Needs-Triage This issue needs to be labelled labels Nov 24, 2021
@DJMcNab
Copy link
Member

DJMcNab commented Nov 24, 2021

The fields of TextureAtlas are public, so you should be able to use the handles field.

However, the handles in a texture atlas are (generally) only set if the atlas was constructed using TextureAtlasBuilder.
These handles are also weak, so for the textures to stay alive, you must already have a reference to them somewhere. In which case, you should probably just use that reference instead

If you want to use individual textures, just use individual textures.

That being said, there is an actual issue here, which is that UI doesn't natively support rendering images from TextureAtlases. I'm not sure what a good solution is to that. It feels like this part of the rendering should be modular in some way, but I'm not sure.

@JaySpruce
Copy link
Member

If I understand correctly, this was fixed by #5103, with the TextureAtlas::texture_rect method. It's not precisely Handle<Texture>, but I think it's equivalent (Option<URect> in main)

@Seldom-SE
Copy link
Author

Yeah, the new API fulfills this use case

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-Rendering Drawing game state to the screen C-Usability A targeted quality-of-life change that makes Bevy easier to use
Projects
None yet
Development

No branches or pull requests

4 participants