Difference between revisions of "Sprite:contains"

From GiderosMobile
(remove language stuff)
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Determines whether the specified sprite is contained in the subtree of this '''Sprite''' instance.
 
Determines whether the specified sprite is contained in the subtree of this '''Sprite''' instance.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(bool) = Sprite:contains(child)
 
(bool) = Sprite:contains(child)
 
</source>
 
</source>

Revision as of 15:31, 13 July 2023

Available since: Gideros 2011.6
Class: Sprite

Description

Determines whether the specified sprite is contained in the subtree of this Sprite instance. <syntaxhighlight lang="lua"> (bool) = Sprite:contains(child) </source>

Parameters

child: (Sprite) the child object to test

Return values

Returns (bool) true if the child object is contained in the subtree of this Sprite instance, otherwise false