Difference between revisions of "Sprite:getNumChildren"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(6 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 ===
<translate><br />
+
Returns the number of children of this sprite.
Returns the number of children of this sprite.<br />
+
<syntaxhighlight lang="lua">
<br /></translate>
 
<source lang="lua">
 
 
(number) = Sprite:getNumChildren()
 
(number) = Sprite:getNumChildren()
</source>
+
</syntaxhighlight>
 +
 
 
=== Return values ===
 
=== Return values ===
'''Returns''' (number) <translate>The number of children of this sprite.</translate><br/>
+
'''Returns''' (number) the number of children of this sprite<br/>
 +
 
 
=== Examples ===
 
=== Examples ===
'''Example'''<br/>
+
<syntaxhighlight lang="lua">
<source lang="lua">local container1 = Sprite.new()
+
local container1 = Sprite.new()
 
local container2 = Sprite.new()
 
local container2 = Sprite.new()
  
Line 22: Line 24:
 
container1:addChild(sprite2)
 
container1:addChild(sprite2)
  
print(container1:getNumChildren()) --&gt; 2
+
print(container1:getNumChildren()) --> 2
print(container2:getNumChildren()) --&gt; 1
+
print(container2:getNumChildren()) --> 1
print(sprite1:getNumChildren()) --&gt; 0
+
print(sprite1:getNumChildren()) --> 0
print(sprite2:getNumChildren()) --&gt; 0</source>
+
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