Difference between revisions of "Sprite:swapChildrenAt"
From GiderosMobile
| Line 1: | Line 1: | ||
| __NOTOC__ | __NOTOC__ | ||
| − | '''Available since:''' Gideros 2015.04.04<br/> | + | '''<translate>Available since</translate>:''' Gideros 2015.04.04<br/> | 
| − | === Description === | + | === <translate>Description</translate> === | 
| <translate><br /> | <translate><br /> | ||
| Swaps two child sprites at specifed indexes. Each index must be between 1<br /> | Swaps two child sprites at specifed indexes. Each index must be between 1<br /> | ||
| Line 10: | Line 10: | ||
|   Sprite:swapChildrenAt(index1,index2) |   Sprite:swapChildrenAt(index1,index2) | ||
| </source> | </source> | ||
| − | === Parameters === | + | === <translate>Parameters</translate> === | 
| '''index1''': (number) <translate>The child index of the first sprite to swap.</translate> <br/> | '''index1''': (number) <translate>The child index of the first sprite to swap.</translate> <br/> | ||
| '''index2''': (number) <translate>The child index of the second sprite to swap.</translate> <br/> | '''index2''': (number) <translate>The child index of the second sprite to swap.</translate> <br/> | ||
Revision as of 07:28, 24 August 2018
Available since: Gideros 2015.04.04
Description
Swaps two child sprites at specifed indexes. Each index must be between 1
and the index number of the last child.  Can be used to sort sprites into
a specific order much faster than adding and removing sprites.
 Sprite:swapChildrenAt(index1,index2)
Parameters
index1: (number) The child index of the first sprite to swap. 
index2: (number) The child index of the second sprite to swap. 
