Path: blob/main/examples/large_scenes/mipmap_generator/README.md
9324 views
mipmap_generator
Optionally use the compress feature and corresponding setting in MipmapGeneratorSettings to enable BCn compression. Note: Compression can take a long time depending on the quantity and resolution of the images.
Currently supported conversions:
R8Unorm -> Bc4RUnorm
Rg8Unorm -> Bc5RgUnorm
Rgba8Unorm -> Bc7RgbaUnorm
Rgba8UnormSrgb -> Bc7RgbaUnormSrgb
Optionally set compressed_image_data_cache_path in MipmapGeneratorSettings to cache raw compressed image data on disk. Only textures that are BCn compressed will be stored.
Test loading a gLTF, computing mips with texture compression, and caching compressed image data on disk: cargo run -p mipmap_generator --features compress --release --example load_gltf -- --compress --cache
Note
Bevy supports a variety of compressed image formats that can also contain mipmaps. This plugin is intended for situations where the use of those formats is impractical (mostly prototyping/testing). With this plugin, mipmap generation happens slowly on the cpu.
Instead of using this plugin, consider using the new CompressedImageSaver.
For generating compressed textures ahead of time also check out:
In my experience, many of these compressed formats can be used with bevy in gltf files. This can be done by converting and replacing the images included in the gltf and then setting the mimeType with something like: "mimeType": "image/ktx2" (for ktx2)
Usage
When materials are created, mipmaps will be created for the images used in the material.
Mipmaps will not be generated for materials found on entities that also have the NoMipmapGeneration component.
Custom Materials
For use with custom materials, just implement the GetImages trait for the custom material.
TODO
Support more texture formats.
Support re-running if images are updated.