Difference between revisions of "Sprite:getNumChildren"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[Sprite]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Returns the number of children of this sprite.
Returns the number of children of this sprite.<br />
+
<syntaxhighlight lang="lua">
<br />
 
<source lang="lua">
 
 
(number) = Sprite:getNumChildren()
 
(number) = Sprite:getNumChildren()
</source>
+
</syntaxhighlight>
'''Returns''' (number) The number of children of this sprite.<br/>
+
 
 +
=== Return values ===
 +
'''Returns''' (number) the number of children of this sprite<br/>
 +
 
 +
=== Examples ===
 +
<syntaxhighlight lang="lua">
 +
local container1 = Sprite.new()
 +
local container2 = Sprite.new()
 +
 
 +
local sprite1 = Sprite.new();
 +
local sprite2 = Sprite.new();
 +
 
 +
container2:addChild(container1)
 +
container1:addChild(sprite1)
 +
container1:addChild(sprite2)
 +
 
 +
print(container1:getNumChildren()) --> 2
 +
print(container2:getNumChildren()) --> 1
 +
print(sprite1:getNumChildren()) --> 0
 +
print(sprite2:getNumChildren()) --> 0
 +
</syntaxhighlight>
 +
 
 +
{{Sprite}}

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2011.6
Class: Sprite

Description

Returns the number of children of this sprite.

(number) = Sprite:getNumChildren()

Return values

Returns (number) the number of children of this sprite

Examples

local container1 = Sprite.new()
local container2 = Sprite.new()

local sprite1 = Sprite.new();
local sprite2 = Sprite.new();

container2:addChild(container1)
container1:addChild(sprite1)
container1:addChild(sprite2)

print(container1:getNumChildren()) --> 2
print(container2:getNumChildren()) --> 1
print(sprite1:getNumChildren()) --> 0
print(sprite2:getNumChildren()) --> 0