bevy_decorum

Crates.iobevy_decorum
lib.rsbevy_decorum
version0.0.2
sourcesrc
created_at2024-06-25 06:19:35.572267
updated_at2024-06-25 14:23:37.773856
descriptionA highly customizable window decoration plugin for the Bevy engine, inspired by tauri-plugin-decorum
homepagehttps://github.com/handamin0130/bevy_decorum
repositoryhttps://github.com/handamin0130/bevy_decorum
max_upload_size
id1283005
size126,538
Han Damin (handamin0130)

documentation

https://docs.rs/crate/bevy_decorum

README

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.

Commit count: 20

cargo fmt