Difference between revisions of "Sprite:addChild"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/Sprite|Sprite]]<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/Sprite|Sprite]]<br/>

Revision as of 10:59, 3 September 2018


Available since: Gideros 2011.6
Class: Sprite

Description


Adds a sprite as a child to this sprite. The child is
added as a last child of this Sprite instance.

Sprites can have only one parent. Therefore if you add a child
object that already has a different sprite as a parent,
the sprite is removed from the child list of the other sprite
and then added to this sprite.

 Sprite:addChild(child)

Parameters

child: (Sprite) The child sprite to add.