Difference between revisions of "Sprite:contains"

From GiderosMobile
(remove language stuff)
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
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>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 15:33, 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.

(bool) = Sprite:contains(child)

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