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

Function TimerDeleteScriptWorld

engine/script/src/script_timer.cpp:455–464  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453 }
454
455 static void TimerDeleteScriptWorld(HScriptWorld script_world)
456 {
457 assert(script_world != 0x0);
458 HTimerWorld timer_world = GetTimerWorld(script_world);
459 if (timer_world != 0x0)
460 {
461 SetTimerWorld(script_world, 0x0);
462 DeleteTimerWorld(timer_world);
463 }
464 }
465
466 static void TimerUpdateScriptWorld(HScriptWorld script_world, float dt)
467 {

Callers

nothing calls this directly

Calls 4

GetTimerWorldFunction · 0.85
SetTimerWorldFunction · 0.85
DeleteTimerWorldFunction · 0.85
assertFunction · 0.50

Tested by

no test coverage detected