Difference between revisions of "Object"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(18 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Supported platforms:''' <br/> | + | <!-- GIDEROSOBJ:Object --> |
+ | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/> | ||
'''Available since:''' Gideros 2015.08<br/> | '''Available since:''' Gideros 2015.08<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | Main Object class from which all Gideros classes inherit. | + | Main Object class from which all Gideros classes inherit. |
− | There is no other purpose for this | + | |
− | + | There is no other purpose for this class, rather a neat way to add methods to all Gideros classes. | |
− | + | ||
− | + | === Examples === | |
− | + | <syntaxhighlight lang="lua"> | |
+ | local bmp = Bitmap.new("image.png") | ||
+ | print(bmp:getClass()) -- prints Bitmap | ||
+ | print(bmp:getBaseClass()) -- prints Sprite | ||
+ | print(bmp:isInstanceOf("Bitmap")) -- prints true | ||
+ | print(bmp:isInstanceOf("Sprite")) -- prints true | ||
+ | print(bmp:isInstanceOf("EventDispatcher")) -- prints true | ||
+ | print(bmp:isInstanceOf("Object")) -- prints true | ||
+ | print(bmp:isInstanceOf("TileMap")) -- prints false | ||
+ | </syntaxhighlight> | ||
+ | |||
{|- | {|- | ||
− | | style="width: 50%;"| | + | | style="width: 50%; vertical-align:top;"| |
=== Methods === | === Methods === | ||
− | [[Object:getBaseClass]] | + | [[Object:getBaseClass]] ''returns base class''<br/><!--GIDEROSMTD:Object:getBaseClass() returns base class--> |
− | [[Object:getClass]] | + | [[Object:getClass]] ''returns class name''<br/><!--GIDEROSMTD:Object:getClass() returns class name--> |
− | [[Object:isInstanceOf]] | + | [[Object:isInstanceOf]] ''checks if instance belongs to class''<br/><!--GIDEROSMTD:Object:isInstanceOf(classname) checks if instance belongs to class--> |
− | | style="width: 50%;"| | + | |
+ | | style="width: 50%; vertical-align:top;"| | ||
=== Events === | === Events === | ||
=== Constants === | === Constants === | ||
|} | |} | ||
+ | |||
+ | {{GIDEROS IMPORTANT LINKS}} |
Latest revision as of 14:32, 13 July 2023
Supported platforms:
Available since: Gideros 2015.08
Description
Main Object class from which all Gideros classes inherit.
There is no other purpose for this class, rather a neat way to add methods to all Gideros classes.
Examples
local bmp = Bitmap.new("image.png")
print(bmp:getClass()) -- prints Bitmap
print(bmp:getBaseClass()) -- prints Sprite
print(bmp:isInstanceOf("Bitmap")) -- prints true
print(bmp:isInstanceOf("Sprite")) -- prints true
print(bmp:isInstanceOf("EventDispatcher")) -- prints true
print(bmp:isInstanceOf("Object")) -- prints true
print(bmp:isInstanceOf("TileMap")) -- prints false
MethodsObject:getBaseClass returns base class |
EventsConstants |