Difference between revisions of "Sprite:swapChildren"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2015.04.04<br/>
 
'''Available since:''' Gideros 2015.04.04<br/>
 +
'''Class:''' [[Sprite]]<br/>
 +
 
=== Description ===
 
=== Description ===
Swap two children index places
+
Swaps two children index places.
<source lang="lua">
+
<syntaxhighlight lang="lua">
Sprite:swapChildren(child1,child2)
+
Sprite:swapChildren(child1,child2)
</source>
+
</syntaxhighlight>
'''child1''': (Sprite) First child ''''''<br/>
+
 
'''child2''': (Sprite) Second child ''''''<br/>
+
=== Parameters ===
 +
'''child1''': (Sprite) first child<br/>
 +
'''child2''': (Sprite) second child<br/>
 +
 
 +
{{Sprite}}

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2015.04.04
Class: Sprite

Description

Swaps two children index places.

Sprite:swapChildren(child1,child2)

Parameters

child1: (Sprite) first child
child2: (Sprite) second child