Difference between revisions of "Core"
From GiderosMobile
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
Gideros Core functions | Gideros Core functions | ||
+ | === Examples === | ||
+ | '''Example'''<br/> | ||
+ | <source lang="lua">MySprite = Core.class(Sprite) | ||
+ | --my custom sprite class | ||
+ | function MySprite:init() | ||
+ | end</source> | ||
{|- | {|- | ||
| style="width: 50%;"| | | style="width: 50%;"| |
Revision as of 10:44, 23 August 2018
Supported platforms: mac, pc
Available since: Gideros 2012.2
Description
Gideros Core functions
Examples
Example
MySprite = Core.class(Sprite)
--my custom sprite class
function MySprite:init()
end
MethodsCore.asyncCall - Launch function on separate thread as background task |
EventsConstants |