Difference between revisions of "MovieClip:setStopAction"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(6 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:''' [[MovieClip]]<br/>
 +
 
=== Description ===
 
=== Description ===
<translate><br />
+
Sets a stop action to the specified frame.
Sets a *stop* action to the specified frame. When the movie clip reaches a frame <br />
+
<syntaxhighlight lang="lua">
with stop action, it stops playing. This function is usually used to divide<br />
+
MovieClip:setStopAction(frame)
the animation into independent parts.<br />
+
</syntaxhighlight>
<br /></translate>
+
 
<source lang="lua">
+
When the movie clip reaches a frame with a stop action, it stops playing.
MovieClip:setStopAction(frame)
+
 
</source>
+
This function is usually used to divide the animation into independent parts.
 +
 
 
=== Parameters ===
 
=== Parameters ===
'''frame''': (int) <translate>the frame number</translate> <br/>
+
'''frame''': (int) the frame number<br/>
 +
 
 +
{{MovieClip}}

Latest revision as of 15:31, 13 July 2023

Available since: Gideros 2011.6
Class: MovieClip

Description

Sets a stop action to the specified frame.

MovieClip:setStopAction(frame)

When the movie clip reaches a frame with a stop action, it stops playing.

This function is usually used to divide the animation into independent parts.

Parameters

frame: (int) the frame number