#window #bevy #decoration

bevy_decorum

A highly customizable window decoration plugin for the Bevy engine, inspired by tauri-plugin-decorum

2 releases

0.0.2 Jun 25, 2024
0.0.1 Jun 25, 2024

#1048 in Game dev

29 downloads per month

MIT/Apache

33KB
353 lines

bevy_decorum

A highly customizable window decoration plugin for the Bevy engine, inspired by tauri-plugin-decorum.

WARNING

This library is EXPERIMENTAL.

Usage

Dependency

Add to Cargo.toml:

[dependecies]
bevy_decorum = { version = "0.0.2" }

System setup

Add the DecorumPlugin to your app:

use bevu::prelude::*;
use bevy_decorum::prelude::*;

fn main() {
    let mut app = App::new();

    app.add_plugins(DefaultPlugins);

    app.add_plugins(DecorumPlugin::default());

    // your code

    app.run();
}

Versions

bevy bevy_decorum
0.13.2 0.0.1 - 0.0.2

Licensing

bevy_decorum is dual-licensed under either APACHE and MIT licenses.

Dependencies

~40–78MB
~1.5M SLoC