#bevy-plugin #bevy #prelude

bevy_fnplugins

A plugin for bevy that allows you to use functions as plugins

2 releases

0.1.1 Dec 2, 2023
0.1.0 Dec 2, 2023

#817 in Game dev

48 downloads per month

MIT/Apache

30KB

bevy_fnplugins

Set rust functions as bevy plugins

Versions

bevy bevy_fnplugins
0.12 0.1

Examples

use bevy::prelude::*;

fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .fn_plugins(example_plugin)
        .run();
}

fn example_plugin(app: &mut App) {
    app.add_system(Startup, hello_system);
}

fn hello_system() {
    println!("It works!");
}

For more examples, see the examples directory.

Dependencies

~21MB
~390K SLoC