| 862 | } |
| 863 | |
| 864 | void 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 | |
| 869 | void 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?"); |
nothing calls this directly
no outgoing calls
no test coverage detected