bevy_mod_scripting 0.19.0

Multi language scripting in Bevy
Documentation
1
2
3
let entity = world._get_entity_with_test_component.call("TestComponent");
let component = world.get_type_by_name.call("TestComponent");
assert(world.has_component.call(entity, component) == true, "Component was not found");