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

Method system_get_size_system_data

ecs.cpp:849–852  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

847}
848
849uint64_t ECS::system_get_size_system_data(godex::system_id p_id) {
850 ERR_FAIL_COND_V_MSG(verify_system_id(p_id) == false, 0, "The SystemID: " + itos(p_id) + " doesn't exists. Are you passing a System ID?");
851 return systems_info[p_id].system_data_get_size();
852}
853
854void ECS::system_new_placement_system_data(godex::system_id p_id, uint8_t *p_mem, Token p_token, World *p_world, Pipeline *p_pipeline) {
855 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