Timer:pause

From GiderosMobile
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Available since: Gideros 2011.6
Class: Timer

Description

Pauses the timer.

Timer:pause()

Example

local pix = Pixel.new(0x00FFaa, 1, 64, 64)
pix:setAnchorPoint(0.5, 0.5)
pix:setPosition(128, 128)
stage:addChild(pix)

local timer = Timer.new(24, 360)

function onTimer(e)
	pix:setRotation(pix:getRotation() + 0.5)
	if pix:getRotation() > 90 then
		timer:pause()
	end
end

timer:addEventListener(Event.TIMER, onTimer, timer)
timer:start()