Difference between revisions of "MovieClip:setReverseAction"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''<translate>Available since</translate>:''' Gideros 2018.3<br/>
+
'''Available since:''' Gideros 2018.3<br/>
=== <translate>Description</translate> ===
+
'''Class:''' [[MovieClip]]<br/>
<translate><br />
+
 
Sets a *reverse* action to the specified frame. When the movie clip reaches a frame <br />
+
=== Description ===
with reverse action, it changes playing direction. This function is can be used to create back and forth animations, even endless.
+
Sets a reverse action to the specified frame.
<br /></translate>
+
<syntaxhighlight lang="lua">
<source lang="lua">
+
MovieClip:setReverseAction(frame)
MovieClip:setReverseAction(frame)
+
</syntaxhighlight>
</source>
+
 
=== <translate>Parameters</translate> ===
+
When the movie clip reaches a frame with a reverse action, it changes its playing direction.
'''frame''': (int) <translate>the frame number</translate> <br/>
+
 
 +
This function can be used to create back and forth animations, and even endless animations.
 +
 
 +
=== Parameters ===
 +
'''frame''': (int) the frame number<br/>
 +
 
 +
{{MovieClip}}

Latest revision as of 15:30, 13 July 2023

Available since: Gideros 2018.3
Class: MovieClip

Description

Sets a reverse action to the specified frame.

MovieClip:setReverseAction(frame)

When the movie clip reaches a frame with a reverse action, it changes its playing direction.

This function can be used to create back and forth animations, and even endless animations.

Parameters

frame: (int) the frame number