doc: Fix issues found by the parser
This commit is contained in:
parent
30da18c01a
commit
996abb83e3
2 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
||||||
[codeblock]
|
[codeblock]
|
||||||
var state_machine = anim_tree["parameters/StateMachine/playback"]
|
var state_machine = anim_tree["parameters/StateMachine/playback"]
|
||||||
state_machine.travel("SomeState")
|
state_machine.travel("SomeState")
|
||||||
[codeblock]
|
[/codeblock]
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
|
|
@ -281,7 +281,7 @@
|
||||||
If [code]true[/code], enables warnings when using a property as if it was a function.
|
If [code]true[/code], enables warnings when using a property as if it was a function.
|
||||||
</member>
|
</member>
|
||||||
<member name="debug/gdscript/warnings/return_value_discarded" type="bool" setter="" getter="">
|
<member name="debug/gdscript/warnings/return_value_discarded" type="bool" setter="" getter="">
|
||||||
If [code]true[/code], enables warnings when calling a function without using its return value (by assigning it to a variable or using it as a function argument). Such return values are sometimes used to denote possible errors using the [Error] type.
|
If [code]true[/code], enables warnings when calling a function without using its return value (by assigning it to a variable or using it as a function argument). Such return values are sometimes used to denote possible errors using the [enum Error] enum.
|
||||||
</member>
|
</member>
|
||||||
<member name="debug/gdscript/warnings/shadowed_variable" type="bool" setter="" getter="">
|
<member name="debug/gdscript/warnings/shadowed_variable" type="bool" setter="" getter="">
|
||||||
If [code]true[/code], enables warnings when defining a local or subclass member variable that would shadow a variable at an upper level (such as a member variable).
|
If [code]true[/code], enables warnings when defining a local or subclass member variable that would shadow a variable at an upper level (such as a member variable).
|
||||||
|
@ -717,7 +717,7 @@
|
||||||
Shaders have a time variable that constantly increases. At some point, it needs to be rolled back to zero to avoid precision errors on shader animations. This setting specifies when (in seconds).
|
Shaders have a time variable that constantly increases. At some point, it needs to be rolled back to zero to avoid precision errors on shader animations. This setting specifies when (in seconds).
|
||||||
</member>
|
</member>
|
||||||
<member name="rendering/quality/2d/gles2_use_nvidia_rect_flicker_workaround" type="bool" setter="" getter="">
|
<member name="rendering/quality/2d/gles2_use_nvidia_rect_flicker_workaround" type="bool" setter="" getter="">
|
||||||
Some NVIDIA GPU drivers have a bug which produces flickering issues for the [code]draw_rect[/code] method, especially as used in [TileMap]. Refer to [url]https://github.com/godotengine/godot/issues/9913[/url] for details.
|
Some NVIDIA GPU drivers have a bug which produces flickering issues for the [code]draw_rect[/code] method, especially as used in [TileMap]. Refer to [url=https://github.com/godotengine/godot/issues/9913][/url] for details.
|
||||||
If [code]true[/code], this option enables a "safe" code path for such NVIDIA GPUs at the cost of performance. This option only impacts the GLES2 rendering backend (so the bug stays if you use GLES3), and only desktop platforms.
|
If [code]true[/code], this option enables a "safe" code path for such NVIDIA GPUs at the cost of performance. This option only impacts the GLES2 rendering backend (so the bug stays if you use GLES3), and only desktop platforms.
|
||||||
</member>
|
</member>
|
||||||
<member name="rendering/quality/2d/use_pixel_snap" type="bool" setter="" getter="">
|
<member name="rendering/quality/2d/use_pixel_snap" type="bool" setter="" getter="">
|
||||||
|
|
Loading…
Add table
Reference in a new issue