MCPcopy Create free account
hub / github.com/ddiakopoulos/polymer / update

Method update

libraries/lib-engine/src/scene.cpp:303–314  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

301}
302
303void scene::update(float delta_time)
304{
305 for (auto & [entity, obj] : graph.graph_objects)
306 {
307 if (obj.enabled)
308 {
309 obj.on_update(delta_time);
310 }
311 }
312
313 if (event_manager) event_manager->process();
314}
315
316base_object * scene::get_object(const entity & e)
317{

Callers 15

on_updateMethod · 0.45
on_drawMethod · 0.45
on_updateMethod · 0.45
on_updateMethod · 0.45
on_updateMethod · 0.45
on_drawMethod · 0.45
on_updateMethod · 0.45
on_drawMethod · 0.45
on_updateMethod · 0.45
on_updateMethod · 0.45
on_updateMethod · 0.45
on_updateMethod · 0.45

Calls 2

processMethod · 0.80
on_updateMethod · 0.45

Tested by

no test coverage detected