bevy_scriptum/assets/tests/rhai/pass_vec3_to_script.rhai
2025-05-19 07:00:00 +02:00

5 lines
129 B
Text

fn test_func(vec3) {
if type_of(vec3) != "tests::rhai_tests::BevyVec3" { throw() }
// TODO: assert x,y,z
mark_success();
}