2个版本
0.1.1 | 2023年12月2日 |
---|---|
0.1.0 | 2023年12月2日 |
#1006 在 游戏开发
30KB
bevy_fnplugins
将Rust函数设置为bevy插件
版本
bevy | bevy_fnplugins |
---|---|
0.12 | 0.1 |
示例
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!");
}
更多示例,请参阅示例目录。
依赖
~23MB
~413K SLoC