Difference between revisions of "Core.frameStatistics"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
Returns a table holding frame statistics. | Returns a table holding frame statistics. | ||
− | < | + | <syntaxhighlight lang="lua"> |
(table) = Core.frameStatistics() | (table) = Core.frameStatistics() | ||
</source> | </source> |
Revision as of 14:26, 13 July 2023
Available since: Gideros 2016.08
Class: Core
Description
Returns a table holding frame statistics. <syntaxhighlight lang="lua"> (table) = Core.frameStatistics() </source>
Returned table fields are:
- meanFrameTime - the average duration of a frame (useful to get current fps)
- meanFreeTime - the average free cpu time in a frame
- frameCounter - frame's number
Return values
Returns (table) table with data