bevy_woff
A Bevy plugin that adds asset loading support for .woff and .woff2 web font files.
Usage
use *;
use WoffPlugin;
Once the plugin is added, .woff2 files can be loaded as Font assets through the AssetServer just like .ttf or .otf files.
Features
| Feature | Default | Description |
|---|---|---|
woff2 |
Yes | Adds .woff2 file support (pulls in brotli decompression) |
woff1 |
No | Adds .woff file support (pulls in zlib decompression) |
To enable both formats:
= { = "0.1", = ["woff1"] }
To use only .woff without .woff2:
= { = "0.1", = false, = ["woff1"] }
Compatibility
| bevy | bevy_woff |
|---|---|
| 0.18 | 0.1 |