| 187 | } |
| 188 | |
| 189 | bool 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 | |
| 194 | const 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)); |
nothing calls this directly
no outgoing calls
no test coverage detected