bevy_mod_scripting 0.19.0

Multi language scripting in Bevy
Documentation
1
2
3
4
5
let a = Vec3.new_.call(2.0, -4.0, 6.0);

assert((-a).x == -2.0, "Negation did not work");
assert((-a).y == 4.0, "Negation did not work");
assert((-a).z == -6.0, "Negation did not work");