Difference between revisions of "Sprite:getChildAt"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Returns the child `Sprite` instance that exists at the specified index. First child is at index...")
 
Line 6: Line 6:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
(Sprite), = Sprite:getChildAt(index,)
+
(Sprite) = Sprite:getChildAt(index)
 
</source>
 
</source>
'''index:''' (number) The index position of the child object. ''''''<br/>
+
'''index''': (number) The index position of the child object. ''''''<br/>
 
'''Returns''' (Sprite) The child sprite at the specified index position.<br/>
 
'''Returns''' (Sprite) The child sprite at the specified index position.<br/>

Revision as of 11:16, 23 August 2018

Available since: Gideros 2011.6

Description


Returns the child `Sprite` instance that exists at the specified index. First child is at index 1.

(Sprite) = Sprite:getChildAt(index)

'index: (number) The index position of the child object. '
Returns (Sprite) The child sprite at the specified index position.