MCPcopy Create free account
hub / github.com/defold/defold / TimerUpdateScriptWorld

Function TimerUpdateScriptWorld

engine/script/src/script_timer.cpp:466–474  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

464 }
465
466 static void TimerUpdateScriptWorld(HScriptWorld script_world, float dt)
467 {
468 assert(script_world != 0x0);
469 HTimerWorld timer_world = GetTimerWorld(script_world);
470 if (timer_world != 0x0)
471 {
472 UpdateTimers(timer_world, dt);
473 }
474 }
475
476 static void TimerInitializeScriptInstance(HScriptWorld script_world)
477 {

Callers

nothing calls this directly

Calls 3

GetTimerWorldFunction · 0.85
UpdateTimersFunction · 0.85
assertFunction · 0.50

Tested by

no test coverage detected