#icons #window #bevy

bevy_window_icon

Window icons in Bevy

4 releases (breaking)

0.4.0 Nov 6, 2024
0.3.0 Nov 6, 2024
0.2.0 Dec 23, 2023
0.1.0 Dec 23, 2023

#580 in Game dev

Download history 1/week @ 2024-07-27 1/week @ 2024-09-21 1/week @ 2024-09-28 206/week @ 2024-11-02 25/week @ 2024-11-09

231 downloads per month

MIT/Apache

39KB

bevy_window_icon

Crates.io A very simple crate to set the window icon.

How to use

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 Compatibility

bevy bevy_easy_localize
0.14 0.4
0.13 0.3
0.12 0.2
0.11 0.1

Dependencies

~24–59MB
~1M SLoC