Docs.rs
bevy_scriptum-0.11.0
Platform
i686-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
bevy_scriptum 0.11.0
Plugin for Bevy engine that allows you to write some of your game or application logic in a scripting language
Crate
Source
Builds
Feature flags
Documentation
Hide files
..
call_script_function_that_causes_runtime_error.rhai
call_script_function_with_params.rhai
entity_variable.rhai
entity_variable_eval.rhai
eval_that_causes_runtime_error.rhai
pass_entity_from_script.rhai
pass_vec3_from_script.rhai
pass_vec3_to_script.rhai
promise_runtime_error.rhai
return_via_promise.rhai
rust_function_gets_called_from_script.rhai
rust_function_gets_called_from_script_with_multiple_params.rhai
rust_function_gets_called_from_script_with_param.rhai
script_function_gets_called_from_rust.rhai
script_function_gets_called_from_rust_with_multiple_params.rhai
script_function_gets_called_from_rust_with_single_param.rhai
side_effects.rhai
1
2
3
4
5
let index = entity.index; fn test_func() { rust_func(index); }