Difference between revisions of "Core"
From GiderosMobile
Line 13: | Line 13: | ||
| style="width: 50%;"| | | style="width: 50%;"| | ||
=== Methods === | === Methods === | ||
− | [[Core.asyncCall]] | + | [[Core.asyncCall]] {{<translate>Launch function on separate thread as background task</translate>}}<br/> |
− | [[Core.class]] | + | [[Core.class]] {{<translate>Creates and returns new Gideros class</translate>}}<br/> |
− | [[Core.frameStatistics]] | + | [[Core.frameStatistics]] {{<translate>Return table with data about frame</translate>}}<br/> |
− | [[Core.profilerReport]] | + | [[Core.profilerReport]] {{<translate>Output profiling results</translate>}}<br/> |
− | [[Core.profilerReset]] | + | [[Core.profilerReset]] {{<translate>Clear recorded profiling data</translate>}}<br/> |
− | [[Core.profilerStart]] | + | [[Core.profilerStart]] {{<translate>Start profiling lua code</translate>}}<br/> |
− | [[Core.profilerStop]] | + | [[Core.profilerStop]] {{<translate>Stop profiling</translate>}}<br/> |
− | [[Core.random]] | + | [[Core.random]] {{<translate>Generate a random number</translate>}}<br/> |
− | [[Core.randomSeed]] | + | [[Core.randomSeed]] {{<translate>Set the random generator seed</translate>}}<br/> |
− | [[Core.yield]] | + | [[Core.yield]] {{<translate>Yield function running as background task</translate>}}<br/> |
| style="width: 50%;"| | | style="width: 50%;"| | ||
=== Events === | === Events === | ||
=== Constants === | === Constants === | ||
|} | |} |
Revision as of 14:18, 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