summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-05-06 08:28:59 +0200
committerGitHub <noreply@github.com>2022-05-06 08:28:59 +0200
commitf70085a9425e9f4ebfec389604cc8008b01316ab (patch)
tree3fdde310219f699fa1d06dbb1593c3e4ae75a1de /doc/classes
parent89449bd0e30f036f0aa21b2cb11d302bad9052be (diff)
parent79be2c7b75aed74541172187ce0d5249d129768d (diff)
Merge pull request #60802 from Calinou/profiler-idle-time-rename
Diffstat (limited to 'doc/classes')
-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">