| 303 | } |
| 304 | |
| 305 | void DynamicQuery::script_fetch(uint32_t p_entity_id) { |
| 306 | #ifdef DEBUG_ENABLED |
| 307 | ERR_FAIL_COND_MSG(has(p_entity_id) == false, "[FATAL] This entity " + itos(p_entity_id) + " can't be fetched by this query. Please check it using the functin `has`."); |
| 308 | #endif |
| 309 | fetch(p_entity_id); |
| 310 | } |
| 311 | |
| 312 | void DynamicQuery::fetch(EntityID p_entity_id) { |
| 313 | for (uint32_t i = 0; i < storages.size(); i += 1) { |
nothing calls this directly
no outgoing calls
no test coverage detected