Difference between revisions of "Core.frameStatistics"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.08<br/> === Description === Returns table with fields: *meanFrameTime* - the average duration of a frame (useful to get current...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(11 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
'''Available since:''' Gideros 2016.08<br/> | '''Available since:''' Gideros 2016.08<br/> | ||
+ | '''Class:''' [[Core]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | Returns table | + | Returns a table holding frame statistics. |
− | *meanFrameTime | + | <syntaxhighlight lang="lua"> |
− | *meanFreeTime | + | (table) = Core.frameStatistics() |
− | *frameCounter | + | </syntaxhighlight> |
− | + | ||
− | + | 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<br/> | '''Returns''' (table) table with data<br/> | ||
+ | |||
+ | {{Core}} |
Latest revision as of 14:27, 13 July 2023
Available since: Gideros 2016.08
Class: Core
Description
Returns a table holding frame statistics.
(table) = Core.frameStatistics()
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