summaryrefslogtreecommitdiffstats
path: root/doc/classes/EngineProfiler.xml
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2022-08-06 21:11:48 +0300
committerYuri Sizov <yuris@humnom.net>2022-08-08 22:34:31 +0300
commitc5d7115038de5f83cb83e08748615a84fc26bee2 (patch)
tree13b9b42aac25f7769428ef91f637e260b768f25d /doc/classes/EngineProfiler.xml
parent35c1eae8d70eb6ae49495339b95f89bcd084c3f2 (diff)
downloadredot-engine-c5d7115038de5f83cb83e08748615a84fc26bee2.tar.gz
Rename the argument tag to param in XML documentation
Diffstat (limited to 'doc/classes/EngineProfiler.xml')
-rw-r--r--doc/classes/EngineProfiler.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/classes/EngineProfiler.xml b/doc/classes/EngineProfiler.xml
index 752ecda867..d8fb193761 100644
--- a/doc/classes/EngineProfiler.xml
+++ b/doc/classes/EngineProfiler.xml
@@ -12,25 +12,25 @@
<methods>
<method name="_add_frame" qualifiers="virtual">
<return type="void" />
- <argument index="0" name="data" type="Array" />
+ <param index="0" name="data" type="Array" />
<description>
Called when data is added to profiler using [method EngineDebugger.profiler_add_frame_data].
</description>
</method>
<method name="_tick" qualifiers="virtual">
<return type="void" />
- <argument index="0" name="frame_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" />
+ <param index="0" name="frame_time" type="float" />
+ <param index="1" name="process_time" type="float" />
+ <param index="2" name="physics_time" type="float" />
+ <param 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. All time values are in seconds. Lower values represent faster processing times and are therefore considered better.
</description>
</method>
<method name="_toggle" qualifiers="virtual">
<return type="void" />
- <argument index="0" name="enable" type="bool" />
- <argument index="1" name="options" type="Array" />
+ <param index="0" name="enable" type="bool" />
+ <param index="1" name="options" type="Array" />
<description>
Called when the profiler is enabled/disabled, along with a set of [code]options[/code].
</description>