Difference between revisions of "Sprite:addChild"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
− | <br /> | + | <translate><br /> |
Adds a sprite as a child to this sprite. The child is<br /> | Adds a sprite as a child to this sprite. The child is<br /> | ||
− | added as a last child of this | + | added as a last child of this [[[Sprite]]] instance.<br /> |
<br /> | <br /> | ||
Sprites can have only one parent. Therefore if you add a child<br /> | Sprites can have only one parent. Therefore if you add a child<br /> | ||
Line 10: | Line 10: | ||
the sprite is removed from the child list of the other sprite<br /> | the sprite is removed from the child list of the other sprite<br /> | ||
and then added to this sprite.<br /> | and then added to this sprite.<br /> | ||
− | <br /> | + | <br /></translate> |
<source lang="lua"> | <source lang="lua"> | ||
Sprite:addChild(child) | Sprite:addChild(child) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''child''': (Sprite) The child sprite to add. <br/> | + | '''child''': (Sprite) <translate>The child sprite to add.</translate> <br/> |
Revision as of 13:34, 23 August 2018
Available since: Gideros 2011.6
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.