Installation

Installing Bevy_Lunex is straightforward, just like any other Rust crate.

Add the following to your Cargo.toml:

[dependencies]
bevy_lunex = { version = "0.2.0" }

Alternatively, you can use the latest bleeding edge version from the Git repository:

[dependencies]
bevy_lunex = { git = "https://github.com/bytestring-net/bevy_lunex" }

Bevy

To avoid potential conflicts with bevy_ui, you can disable the default features and enable them manually. This prevents mixing different UI crates and reduces confusion. Refer to Bevy's Cargo.toml file for the complete list of features.

Add the following to your Cargo.toml:

bevy = { version = "0.14.0", default_features = false, features = [
    # Core
    "bevy_core_pipeline",
    "multi_threaded",
    "bevy_winit",
    "bevy_audio",
    "bevy_sprite",
    "bevy_text",

    # Core formats
    "vorbis",
    "png",

    # ... Enable what you need here
] }