Difference between revisions of "MovieClip:isPlaying"

From GiderosMobile
(removed language stuff)
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Returns whether or not current clip is playing.
 
Returns whether or not current clip is playing.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(bool) = MovieClip:isPlaying()
 
(bool) = MovieClip:isPlaying()
 
</source>
 
</source>

Revision as of 15:28, 13 July 2023

Available since: Gideros 2020.11
Class: MovieClip

Description

Returns whether or not current clip is playing. <syntaxhighlight lang="lua"> (bool) = MovieClip:isPlaying() </source>

Return values

Returns (bool) a value of "true" if current clip is playing, "false" otherwise