IsTimerPaused
Jump to navigation
Jump to search
Syntax
bool isTimerPaused ( timer theTimer )
OOP Syntax Help! I don't understand this!
- Variable: .paused
Required Arguments
- theTimer: The timer you wish to check.
Returns
Returns true if the timer is currently paused, false if not or if no such timer existed.
Example
This example pauses all currently running timers and resumes all currently paused timers from this resource.
-- Get a table of all current timers from this resource local timers = getTimers ( ) -- Loop through the table of timers for timerIndex, timerValue in ipairs( timers ) do -- check if each timer is currently paused local isPaused = isTimerPaused( timerValue ) -- pause or resume each timer based on its current state setTimerPaused ( timerValue, not isPaused ) end
See Also
- addDebugHook
- base64Decode
- base64Encode
- debugSleep
- decodeString
- encodeString
- fromJSON
- generateKeyPair
- getColorFromString
- getDevelopmentMode
- getDistanceBetweenPoints2D
- getDistanceBetweenPoints3D
- getEasingValue
- getNetworkStats
- getNetworkUsageData
- getPerformanceStats
- getRealTime
- getTickCount
- getTimerDetails
- getTimers
- getFPSLimit
- getUserdataType
- getVersion
- gettok
- isTransferBoxVisible
- setTransferBoxVisible
- hash
- inspect
- interpolateBetween
- iprint
- isOOPEnabled
- isTimer
- killTimer
- md5
- passwordHash
- passwordVerify
- pregFind
- pregMatch
- pregReplace
- removeDebugHook
- resetTimer
- setDevelopmentMode
- setFPSLimit
- setTimer
- ref
- deref
- sha256
- split
- teaDecode
- teaEncode
- toJSON
- tocolor
- getProcessMemoryStats
- utfChar
- utfCode
- utfLen
- utfSeek
- utfSub
- bitAnd
- bitNot
- bitOr
- bitXor
- bitTest
- bitLRotate
- bitRRotate
- bitLShift
- bitRShift
- bitArShift
- bitExtract
- bitReplace