Hey,
I have one question about timer.performWithDelay function .
I wanted use it more than one. Like this:
local timer = timer.performWithDelay( 50, makeSomeMoves, 0 ) – move some object on the screen
local timer2 = timer.performWithDelay( 230, updateHPBar, 0 ) – updateHealthBar
But I get “attempt to call field performWithDelay (a nil value)” error, why? I can only have one timer.performWithDelay at one time ?