Skip to content

Commit

Permalink
Fixed wrong order of function in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterPuma80 committed Feb 3, 2025
1 parent f073b27 commit 7ed20bc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/classes/Engine.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@
{[code]platinum_sponsors[/code], [code]gold_sponsors[/code], [code]silver_sponsors[/code], [code]bronze_sponsors[/code], [code]mini_sponsors[/code], [code]gold_donors[/code], [code]silver_donors[/code], [code]bronze_donors[/code]}
</description>
</method>
<method name="get_frames_drawn">
<method name="get_frame_ticks" qualifiers="const">
<return type="int" />
<description>
Returns the total number of frames drawn since the engine started.
[b]Note:[/b] On headless platforms, or if rendering is disabled with [code]--disable-render-loop[/code] via command line, this method always returns [code]0[/code]. See also [method get_process_frames].
Returns the tick count at the start of the frame.
</description>
</method>
<method name="get_frame_ticks" qualifiers="const">
<method name="get_frames_drawn">
<return type="int" />
<description>
Returns the tick count at the start of the frame.
Returns the total number of frames drawn since the engine started.
[b]Note:[/b] On headless platforms, or if rendering is disabled with [code]--disable-render-loop[/code] via command line, this method always returns [code]0[/code]. See also [method get_process_frames].
</description>
</method>
<method name="get_frames_per_second" qualifiers="const">
Expand Down

0 comments on commit 7ed20bc

Please sign in to comment.