summaryrefslogtreecommitdiffstats
path: root/doc/classes/EngineProfiler.xml
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2022-05-05 20:23:47 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2022-05-05 20:23:47 +0200
commit79be2c7b75aed74541172187ce0d5249d129768d (patch)
tree9c57b663ffbba1041df7dc1484223635dd84da0f /doc/classes/EngineProfiler.xml
parentefd6e4da0c506d0f6755f242484aba1bdc762b6e (diff)
downloadredot-engine-79be2c7b75aed74541172187ce0d5249d129768d.tar.gz
Rename profiler "Idle Time" to "Process Time"
References to "idle time" are progressively being replaced by "process time" throughout the engine to avoid confusion.
Diffstat (limited to 'doc/classes/EngineProfiler.xml')
-rw-r--r--doc/classes/EngineProfiler.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/EngineProfiler.xml b/doc/classes/EngineProfiler.xml
index 45eb926108..752ecda867 100644
--- a/doc/classes/EngineProfiler.xml
+++ b/doc/classes/EngineProfiler.xml
@@ -20,11 +20,11 @@
<method name="_tick" qualifiers="virtual">
<return type="void" />
<argument index="0" name="frame_time" type="float" />
- <argument index="1" name="idle_time" type="float" />
+ <argument index="1" name="process_time" type="float" />
<argument index="2" name="physics_time" type="float" />
<argument index="3" name="physics_frame_time" type="float" />
<description>
- Called once every engine iteration when the profiler is active with information about the current frame.
+ Called once every engine iteration when the profiler is active with information about the current frame. All time values are in seconds. Lower values represent faster processing times and are therefore considered better.
</description>
</method>
<method name="_toggle" qualifiers="virtual">