#How to load animated gifs?
2 messages · Page 1 of 1 (latest)
I think you'll need to turn it into a PNG that has all of the frames of animation and then animate it yourself like this: https://bevyengine.org/examples/2d/sprite-sheet/
2 messages · Page 1 of 1 (latest)
Hello, I would like to load animated gif assets like this cool particles effect. When I naively do asset_server.load(texture), the texture is not loaded, I get a warning at runtime:
2023-01-30T13:47:06.866462Z WARN bevy_asset::asset_server: no `AssetLoader` found for the following extension: gif
I think you'll need to turn it into a PNG that has all of the frames of animation and then animate it yourself like this: https://bevyengine.org/examples/2d/sprite-sheet/