bevy_scriptum/examples/non_closure_system.rs

19 lines
559 B
Rust

use bevy::prelude::*;
use bevy_scriptum::{prelude::*, Script};
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugins(ScriptingPlugin::default())
.add_script_function(String::from("hello_bevy"), hello_bevy_callback_system)
.add_systems(Startup, startup)
.run();
}
fn startup(mut commands: Commands, assets_server: Res<AssetServer>) {
commands.spawn(Script::new(assets_server.load("examples/hello_world.rhai")));
}
fn hello_bevy_callback_system() {
println!("hello bevy, called from script");
}