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

Method storage_notify_release_write

ecs.cpp:189–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

187}
188
189bool ECS::storage_notify_release_write(godex::component_id p_component_id) {
190 ERR_FAIL_COND_V_MSG(verify_component_id(p_component_id) == false, false, "The component " + itos(p_component_id) + " is invalid.");
191 return components_info[p_component_id].notify_release_write;
192}
193
194const LocalVector<PropertyInfo> *ECS::component_get_static_properties(uint32_t p_component_id) {
195 ERR_FAIL_COND_V_MSG(verify_component_id(p_component_id) == false, nullptr, "The `component_id` is invalid: " + itos(p_component_id));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected