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

Method system_delete_placement_system_data

ecs.cpp:859–862  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

857}
858
859void ECS::system_delete_placement_system_data(godex::system_id p_id, uint8_t *p_mem) {
860 ERR_FAIL_COND_MSG(verify_system_id(p_id) == false, "The SystemID: " + itos(p_id) + " doesn't exists. Are you passing a System ID?");
861 return systems_info[p_id].system_data_delete_placement(p_mem);
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?");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected