bevy_mod_scripting 0.19.0

Multi language scripting in Bevy
Documentation
1
2
3
4
5
6

let entity = world._get_entity_with_test_component.call("CompWithDefault");
let component = world.get_type_by_name.call("CompWithDefault");

world.remove_component.call(entity, component);
assert(world.has_component.call(entity, component) == false, "Component was not removed");