Difference between revisions of "Timer:isRunning"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Returns the current running status of timer.<br /> <br /> <source lang="lua"> (bool), = Timer:i...")
 
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[Timer]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Returns the current running status of timer.
Returns the current running status of timer.<br />
+
<syntaxhighlight lang="lua">
<br />
+
(bool) = Timer:isRunning()
<source lang="lua">
+
</syntaxhighlight>
(bool), = Timer:isRunning()
+
 
</source>
+
=== Return values ===
'''Returns''' (bool) `true` if the timer is running, `false` otherwise.<br/>
+
'''Returns''' (bool) ''true'' if the timer is running, ''false'' otherwise<br/>
 +
 
 +
{{Timer}}

Latest revision as of 22:40, 24 August 2024

Available since: Gideros 2011.6
Class: Timer

Description

Returns the current running status of timer.

(bool) = Timer:isRunning()

Return values

Returns (bool) true if the timer is running, false otherwise