MCPcopy Create free account
hub / github.com/GodotECS/godex / system_set_active_system

Method system_set_active_system

ecs.cpp:864–867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

862}
863
864void ECS::system_set_active_system(godex::system_id p_id, uint8_t *p_mem, bool p_active) {
865 ERR_FAIL_COND_MSG(verify_system_id(p_id) == false, "The SystemID: " + itos(p_id) + " doesn't exists. Are you passing a System ID?");
866 return systems_info[p_id].system_data_set_active(p_mem, p_active);
867}
868
869void ECS::clear_emitters_for_system(godex::system_id p_id) {
870 ERR_FAIL_COND_MSG(verify_system_id(p_id) == false, "The SystemID: " + itos(p_id) + " doesn't exists. Are you passing a System ID?");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected