Sprite:addChild

From GiderosMobile
Revision as of 11:05, 23 August 2018 by Hgy29 (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Adds a sprite as a child to this sprite. The child is<br /> added as a last child of this `Spri...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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,)

'child: (Sprite) The child sprite to add. '