bevy_window_icon
A very simple crate to set the window icon.
How to use
use *;
use WindowIconPlugin;
That's literally it.
Bevy Compatibility
| bevy | bevy_easy_localize |
|---|---|
| 0.14 | 0.4 |
| 0.13 | 0.3 |
| 0.12 | 0.2 |
| 0.11 | 0.1 |
bevy_window_icon
A very simple crate to set the window icon.
use bevy::prelude::*;
use bevy_window_icon::WindowIconPlugin;
pub fn main() {
App::new()
.add_plugins((
DefaultPlugins,
WindowIconPlugin::new("examples/assets/icon.png")
))
.run();
}
That's literally it.
| bevy | bevy_easy_localize |
|---|---|
| 0.14 | 0.4 |
| 0.13 | 0.3 |
| 0.12 | 0.2 |
| 0.11 | 0.1 |