mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-07 02:12:07 +03:00
Merge pull request #9938 from godotengine/classref/sync-de2f0f1
classref: Sync with current 3.x branch (de2f0f1)
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/modules/gdscript/doc_classes/@GDScript.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/modules/gdscript/doc_classes/@GDScript.xml.
|
||||
|
||||
.. _class_@GDScript:
|
||||
|
||||
@@ -335,7 +335,7 @@ Returns the absolute value of parameter ``s`` (i.e. positive value).
|
||||
|
||||
:ref:`float<class_float>` **acos** **(** :ref:`float<class_float>` s **)**
|
||||
|
||||
Returns the arc cosine of ``s`` in radians. Use to get the angle of cosine ``s``. ``s`` must be between ``-1.0`` and ``1.0`` (inclusive), otherwise, :ref:`acos<class_@GDScript_method_acos>` will return :ref:`NAN<class_@GDScript_constant_NAN>`.
|
||||
Returns the arc cosine of ``s`` in radians. Use to get the angle of cosine ``s``. ``s`` will be clamped between ``-1.0`` and ``1.0`` (inclusive), in order to prevent :ref:`acos<class_@GDScript_method_acos>` from returning :ref:`NAN<class_@GDScript_constant_NAN>`.
|
||||
|
||||
::
|
||||
|
||||
@@ -352,7 +352,7 @@ Returns the arc cosine of ``s`` in radians. Use to get the angle of cosine ``s``
|
||||
|
||||
:ref:`float<class_float>` **asin** **(** :ref:`float<class_float>` s **)**
|
||||
|
||||
Returns the arc sine of ``s`` in radians. Use to get the angle of sine ``s``. ``s`` must be between ``-1.0`` and ``1.0`` (inclusive), otherwise, :ref:`asin<class_@GDScript_method_asin>` will return :ref:`NAN<class_@GDScript_constant_NAN>`.
|
||||
Returns the arc sine of ``s`` in radians. Use to get the angle of sine ``s``. ``s`` will be clamped between ``-1.0`` and ``1.0`` (inclusive), in order to prevent :ref:`asin<class_@GDScript_method_asin>` from returning :ref:`NAN<class_@GDScript_constant_NAN>`.
|
||||
|
||||
::
|
||||
|
||||
@@ -671,7 +671,7 @@ Returns an "eased" value of ``x`` based on an easing function defined with ``cur
|
||||
- 1.0: Linear
|
||||
- Greater than 1.0 (exclusive): Ease in
|
||||
|
||||
\ `ease() curve values cheatsheet <https://raw.githubusercontent.com/godotengine/godot-docs/3.5/img/ease_cheatsheet.png>`__\
|
||||
\ `ease() curve values cheatsheet <https://raw.githubusercontent.com/godotengine/godot-docs/3.6/img/ease_cheatsheet.png>`__\
|
||||
|
||||
See also :ref:`smoothstep<class_@GDScript_method_smoothstep>`. If you need to perform more advanced transitions, use :ref:`Tween<class_Tween>` or :ref:`AnimationPlayer<class_AnimationPlayer>`.
|
||||
|
||||
@@ -1088,9 +1088,9 @@ This method is a simplified version of :ref:`ResourceLoader.load<class_ResourceL
|
||||
|
||||
:ref:`float<class_float>` **log** **(** :ref:`float<class_float>` s **)**
|
||||
|
||||
Natural logarithm. The amount of time needed to reach a certain level of continuous growth.
|
||||
Returns the `natural logarithm <https://en.wikipedia.org/wiki/Natural_logarithm>`__ of ``s`` (base `[i]e[/i] <https://en.wikipedia.org/wiki/E_(mathematical_constant)>`__, with *e* being approximately 2.71828). This is the amount of time needed to reach a certain level of continuous growth.
|
||||
|
||||
\ **Note:** This is not the same as the "log" function on most calculators, which uses a base 10 logarithm.
|
||||
\ **Note:** This is not the same as the "log" function on most calculators, which uses a base 10 logarithm. To use base 10 logarithm, use ``log(x) / log(10)``.
|
||||
|
||||
::
|
||||
|
||||
@@ -1735,7 +1735,7 @@ This S-shaped curve is the cubic Hermite interpolator, given by ``f(y) = 3*y^2 -
|
||||
|
||||
Compared to :ref:`ease<class_@GDScript_method_ease>` with a curve value of ``-1.6521``, :ref:`smoothstep<class_@GDScript_method_smoothstep>` returns the smoothest possible curve with no sudden changes in the derivative. If you need to perform more advanced transitions, use :ref:`Tween<class_Tween>` or :ref:`AnimationPlayer<class_AnimationPlayer>`.
|
||||
|
||||
\ `Comparison between smoothstep() and ease(x, -1.6521) return values <https://raw.githubusercontent.com/godotengine/godot-docs/3.5/img/smoothstep_ease_comparison.png>`__
|
||||
\ `Comparison between smoothstep() and ease(x, -1.6521) return values <https://raw.githubusercontent.com/godotengine/godot-docs/3.6/img/smoothstep_ease_comparison.png>`__
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/@GlobalScope.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/@GlobalScope.xml.
|
||||
|
||||
.. _class_@GlobalScope:
|
||||
|
||||
@@ -3913,7 +3913,7 @@ Hint that a property represents a particular type. If a property is :ref:`TYPE_S
|
||||
|
||||
::
|
||||
|
||||
hint_string = "%s:" % [TYPE_INT] # Array of inteters.
|
||||
hint_string = "%s:" % [TYPE_INT] # Array of integers.
|
||||
hint_string = "%s:%s:" % [TYPE_ARRAY, TYPE_REAL] # Two-dimensional array of floats.
|
||||
hint_string = "%s/%s:Resource" % [TYPE_OBJECT, TYPE_OBJECT] # Array of resources.
|
||||
hint_string = "%s:%s/%s:Resource" % [TYPE_ARRAY, TYPE_OBJECT, TYPE_OBJECT] # Two-dimensional array of resources.
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AABB.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AABB.xml.
|
||||
|
||||
.. _class_AABB:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AcceptDialog.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AcceptDialog.xml.
|
||||
|
||||
.. _class_AcceptDialog:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AESContext.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AESContext.xml.
|
||||
|
||||
.. _class_AESContext:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimatedSprite.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimatedSprite.xml.
|
||||
|
||||
.. _class_AnimatedSprite:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimatedSprite3D.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimatedSprite3D.xml.
|
||||
|
||||
.. _class_AnimatedSprite3D:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimatedTexture.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimatedTexture.xml.
|
||||
|
||||
.. _class_AnimatedTexture:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/Animation.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Animation.xml.
|
||||
|
||||
.. _class_Animation:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNode.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNode.xml.
|
||||
|
||||
.. _class_AnimationNode:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeAdd2.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeAdd2.xml.
|
||||
|
||||
.. _class_AnimationNodeAdd2:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeAdd3.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeAdd3.xml.
|
||||
|
||||
.. _class_AnimationNodeAdd3:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeAnimation.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeAnimation.xml.
|
||||
|
||||
.. _class_AnimationNodeAnimation:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeBlend2.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeBlend2.xml.
|
||||
|
||||
.. _class_AnimationNodeBlend2:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeBlend3.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeBlend3.xml.
|
||||
|
||||
.. _class_AnimationNodeBlend3:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeBlendSpace1D.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeBlendSpace1D.xml.
|
||||
|
||||
.. _class_AnimationNodeBlendSpace1D:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeBlendSpace2D.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeBlendSpace2D.xml.
|
||||
|
||||
.. _class_AnimationNodeBlendSpace2D:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeBlendTree.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeBlendTree.xml.
|
||||
|
||||
.. _class_AnimationNodeBlendTree:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeOneShot.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeOneShot.xml.
|
||||
|
||||
.. _class_AnimationNodeOneShot:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeOutput.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeOutput.xml.
|
||||
|
||||
.. _class_AnimationNodeOutput:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeStateMachine.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeStateMachine.xml.
|
||||
|
||||
.. _class_AnimationNodeStateMachine:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeStateMachinePlayback.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeStateMachinePlayback.xml.
|
||||
|
||||
.. _class_AnimationNodeStateMachinePlayback:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeStateMachineTransition.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeStateMachineTransition.xml.
|
||||
|
||||
.. _class_AnimationNodeStateMachineTransition:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeTimeScale.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeTimeScale.xml.
|
||||
|
||||
.. _class_AnimationNodeTimeScale:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeTimeSeek.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeTimeSeek.xml.
|
||||
|
||||
.. _class_AnimationNodeTimeSeek:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationNodeTransition.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationNodeTransition.xml.
|
||||
|
||||
.. _class_AnimationNodeTransition:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationPlayer.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationPlayer.xml.
|
||||
|
||||
.. _class_AnimationPlayer:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationRootNode.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationRootNode.xml.
|
||||
|
||||
.. _class_AnimationRootNode:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationTrackEditPlugin.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationTrackEditPlugin.xml.
|
||||
|
||||
.. _class_AnimationTrackEditPlugin:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationTree.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationTree.xml.
|
||||
|
||||
.. _class_AnimationTree:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AnimationTreePlayer.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AnimationTreePlayer.xml.
|
||||
|
||||
.. _class_AnimationTreePlayer:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/Area.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Area.xml.
|
||||
|
||||
.. _class_Area:
|
||||
|
||||
@@ -25,6 +25,8 @@ To give the area its shape, add a :ref:`CollisionShape<class_CollisionShape>` or
|
||||
|
||||
\ **Warning:** See :ref:`ConcavePolygonShape<class_ConcavePolygonShape>` (also called "trimesh") for a warning about possibly unexpected behavior when using that shape for an area.
|
||||
|
||||
\ **Warning:** With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead.
|
||||
|
||||
.. rst-class:: classref-introduction-group
|
||||
|
||||
Tutorials
|
||||
@@ -143,9 +145,19 @@ Emitted when one of another Area's :ref:`Shape<class_Shape>`\ s enters one of th
|
||||
|
||||
\ ``area`` the other Area.
|
||||
|
||||
\ ``area_shape_index`` the index of the :ref:`Shape<class_Shape>` of the other Area used by the :ref:`PhysicsServer<class_PhysicsServer>`. Get the :ref:`CollisionShape<class_CollisionShape>` node with ``area.shape_owner_get_owner(area_shape_index)``.
|
||||
\ ``area_shape_index`` the index of the :ref:`Shape<class_Shape>` from the other Area.
|
||||
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape<class_Shape>` of this Area used by the :ref:`PhysicsServer<class_PhysicsServer>`. Get the :ref:`CollisionShape<class_CollisionShape>` node with ``self.shape_owner_get_owner(local_shape_index)``.
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape<class_Shape>` from this Area.
|
||||
|
||||
\ **Example of getting the** :ref:`CollisionShape<class_CollisionShape>` **node from the shape index:**\
|
||||
|
||||
::
|
||||
|
||||
var other_shape_owner = area.shape_find_owner(area_shape_index)
|
||||
var other_shape_node = area.shape_owner_get_owner(other_shape_owner)
|
||||
|
||||
var local_shape_owner = shape_find_owner(local_shape_index)
|
||||
var local_shape_node = shape_owner_get_owner(local_shape_owner)
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
@@ -163,9 +175,11 @@ Emitted when one of another Area's :ref:`Shape<class_Shape>`\ s enters one of th
|
||||
|
||||
\ ``area`` the other Area.
|
||||
|
||||
\ ``area_shape_index`` the index of the :ref:`Shape<class_Shape>` of the other Area used by the :ref:`PhysicsServer<class_PhysicsServer>`. Get the :ref:`CollisionShape<class_CollisionShape>` node with ``area.shape_owner_get_owner(area_shape_index)``.
|
||||
\ ``area_shape_index`` the index of the :ref:`Shape<class_Shape>` from the other Area.
|
||||
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape<class_Shape>` of this Area used by the :ref:`PhysicsServer<class_PhysicsServer>`. Get the :ref:`CollisionShape<class_CollisionShape>` node with ``self.shape_owner_get_owner(local_shape_index)``.
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape<class_Shape>` from this Area.
|
||||
|
||||
See also :ref:`area_shape_entered<class_Area_signal_area_shape_entered>`.
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
@@ -211,9 +225,19 @@ Emitted when one of a :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`GridMap<cla
|
||||
|
||||
\ ``body`` the :ref:`Node<class_Node>`, if it exists in the tree, of the :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`GridMap<class_GridMap>`.
|
||||
|
||||
\ ``body_shape_index`` the index of the :ref:`Shape<class_Shape>` of the :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`GridMap<class_GridMap>` used by the :ref:`PhysicsServer<class_PhysicsServer>`. Get the :ref:`CollisionShape<class_CollisionShape>` node with ``body.shape_owner_get_owner(body_shape_index)``.
|
||||
\ ``body_shape_index`` the index of the :ref:`Shape<class_Shape>` from the :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`GridMap<class_GridMap>`.
|
||||
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape<class_Shape>` of this Area used by the :ref:`PhysicsServer<class_PhysicsServer>`. Get the :ref:`CollisionShape<class_CollisionShape>` node with ``self.shape_owner_get_owner(local_shape_index)``.
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape<class_Shape>` from this Area.
|
||||
|
||||
\ **Example of getting the** :ref:`CollisionShape<class_CollisionShape>` **node from the shape index:**\
|
||||
|
||||
::
|
||||
|
||||
var body_shape_owner = body.shape_find_owner(body_shape_index)
|
||||
var body_shape_node = body.shape_owner_get_owner(body_shape_owner)
|
||||
|
||||
var local_shape_owner = shape_find_owner(local_shape_index)
|
||||
var local_shape_node = shape_owner_get_owner(local_shape_owner)
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
@@ -231,9 +255,11 @@ Emitted when one of a :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`GridMap<cla
|
||||
|
||||
\ ``body`` the :ref:`Node<class_Node>`, if it exists in the tree, of the :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`GridMap<class_GridMap>`.
|
||||
|
||||
\ ``body_shape_index`` the index of the :ref:`Shape<class_Shape>` of the :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`GridMap<class_GridMap>` used by the :ref:`PhysicsServer<class_PhysicsServer>`. Get the :ref:`CollisionShape<class_CollisionShape>` node with ``body.shape_owner_get_owner(body_shape_index)``.
|
||||
\ ``body_shape_index`` the index of the :ref:`Shape<class_Shape>` from the :ref:`PhysicsBody<class_PhysicsBody>` or :ref:`GridMap<class_GridMap>`.
|
||||
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape<class_Shape>` of this Area used by the :ref:`PhysicsServer<class_PhysicsServer>`. Get the :ref:`CollisionShape<class_CollisionShape>` node with ``self.shape_owner_get_owner(local_shape_index)``.
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape<class_Shape>` from this Area.
|
||||
|
||||
See also :ref:`body_shape_entered<class_Area_signal_body_shape_entered>`.
|
||||
|
||||
.. rst-class:: classref-section-separator
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/Area2D.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Area2D.xml.
|
||||
|
||||
.. _class_Area2D:
|
||||
|
||||
@@ -139,9 +139,19 @@ Emitted when one of another Area2D's :ref:`Shape2D<class_Shape2D>`\ s enters one
|
||||
|
||||
\ ``area`` the other Area2D.
|
||||
|
||||
\ ``area_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` of the other Area2D used by the :ref:`Physics2DServer<class_Physics2DServer>`. Get the :ref:`CollisionShape2D<class_CollisionShape2D>` node with ``area.shape_owner_get_owner(area_shape_index)``.
|
||||
\ ``area_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` from the other Area2D.
|
||||
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` of this Area2D used by the :ref:`Physics2DServer<class_Physics2DServer>`. Get the :ref:`CollisionShape2D<class_CollisionShape2D>` node with ``self.shape_owner_get_owner(local_shape_index)``.
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` from this Area2D.
|
||||
|
||||
\ **Example of getting the** :ref:`CollisionShape2D<class_CollisionShape2D>` **node from the shape index:**\
|
||||
|
||||
::
|
||||
|
||||
var other_shape_owner = area.shape_find_owner(area_shape_index)
|
||||
var other_shape_node = area.shape_owner_get_owner(other_shape_owner)
|
||||
|
||||
var local_shape_owner = shape_find_owner(local_shape_index)
|
||||
var local_shape_node = shape_owner_get_owner(local_shape_owner)
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
@@ -159,9 +169,11 @@ Emitted when one of another Area2D's :ref:`Shape2D<class_Shape2D>`\ s exits one
|
||||
|
||||
\ ``area`` the other Area2D.
|
||||
|
||||
\ ``area_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` of the other Area2D used by the :ref:`Physics2DServer<class_Physics2DServer>`. Get the :ref:`CollisionShape2D<class_CollisionShape2D>` node with ``area.shape_owner_get_owner(area_shape_index)``.
|
||||
\ ``area_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` from the other Area2D.
|
||||
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` of this Area2D used by the :ref:`Physics2DServer<class_Physics2DServer>`. Get the :ref:`CollisionShape2D<class_CollisionShape2D>` node with ``self.shape_owner_get_owner(local_shape_index)``.
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` from this Area2D.
|
||||
|
||||
See also :ref:`area_shape_entered<class_Area2D_signal_area_shape_entered>`.
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
@@ -207,9 +219,19 @@ Emitted when one of a :ref:`PhysicsBody2D<class_PhysicsBody2D>` or :ref:`TileMap
|
||||
|
||||
\ ``body`` the :ref:`Node<class_Node>`, if it exists in the tree, of the :ref:`PhysicsBody2D<class_PhysicsBody2D>` or :ref:`TileMap<class_TileMap>`.
|
||||
|
||||
\ ``body_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` of the :ref:`PhysicsBody2D<class_PhysicsBody2D>` or :ref:`TileMap<class_TileMap>` used by the :ref:`Physics2DServer<class_Physics2DServer>`. Get the :ref:`CollisionShape2D<class_CollisionShape2D>` node with ``body.shape_owner_get_owner(body_shape_index)``.
|
||||
\ ``body_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` from the :ref:`PhysicsBody2D<class_PhysicsBody2D>` or :ref:`TileMap<class_TileMap>`.
|
||||
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` of this Area2D used by the :ref:`Physics2DServer<class_Physics2DServer>`. Get the :ref:`CollisionShape2D<class_CollisionShape2D>` node with ``self.shape_owner_get_owner(local_shape_index)``.
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` from this Area2D.
|
||||
|
||||
\ **Example of getting the** :ref:`CollisionShape2D<class_CollisionShape2D>` **node from the shape index:**\
|
||||
|
||||
::
|
||||
|
||||
var body_shape_owner = body.shape_find_owner(body_shape_index)
|
||||
var body_shape_node = body.shape_owner_get_owner(body_shape_owner)
|
||||
|
||||
var local_shape_owner = shape_find_owner(local_shape_index)
|
||||
var local_shape_node = shape_owner_get_owner(local_shape_owner)
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
@@ -227,9 +249,11 @@ Emitted when one of a :ref:`PhysicsBody2D<class_PhysicsBody2D>` or :ref:`TileMap
|
||||
|
||||
\ ``body`` the :ref:`Node<class_Node>`, if it exists in the tree, of the :ref:`PhysicsBody2D<class_PhysicsBody2D>` or :ref:`TileMap<class_TileMap>`.
|
||||
|
||||
\ ``body_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` of the :ref:`PhysicsBody2D<class_PhysicsBody2D>` or :ref:`TileMap<class_TileMap>` used by the :ref:`Physics2DServer<class_Physics2DServer>`. Get the :ref:`CollisionShape2D<class_CollisionShape2D>` node with ``body.shape_owner_get_owner(body_shape_index)``.
|
||||
\ ``body_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` from the :ref:`PhysicsBody2D<class_PhysicsBody2D>` or :ref:`TileMap<class_TileMap>`.
|
||||
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` of this Area2D used by the :ref:`Physics2DServer<class_Physics2DServer>`. Get the :ref:`CollisionShape2D<class_CollisionShape2D>` node with ``self.shape_owner_get_owner(local_shape_index)``.
|
||||
\ ``local_shape_index`` the index of the :ref:`Shape2D<class_Shape2D>` from this Area2D.
|
||||
|
||||
See also :ref:`body_shape_entered<class_Area2D_signal_body_shape_entered>`.
|
||||
|
||||
.. rst-class:: classref-section-separator
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/Array.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Array.xml.
|
||||
|
||||
.. _class_Array:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/ArrayMesh.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/ArrayMesh.xml.
|
||||
|
||||
.. _class_ArrayMesh:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/ARVRAnchor.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/ARVRAnchor.xml.
|
||||
|
||||
.. _class_ARVRAnchor:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/ARVRCamera.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/ARVRCamera.xml.
|
||||
|
||||
.. _class_ARVRCamera:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/ARVRController.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/ARVRController.xml.
|
||||
|
||||
.. _class_ARVRController:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/ARVRInterface.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/ARVRInterface.xml.
|
||||
|
||||
.. _class_ARVRInterface:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/modules/gdnative/doc_classes/ARVRInterfaceGDNative.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/modules/gdnative/doc_classes/ARVRInterfaceGDNative.xml.
|
||||
|
||||
.. _class_ARVRInterfaceGDNative:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/ARVROrigin.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/ARVROrigin.xml.
|
||||
|
||||
.. _class_ARVROrigin:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/ARVRPositionalTracker.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/ARVRPositionalTracker.xml.
|
||||
|
||||
.. _class_ARVRPositionalTracker:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/ARVRServer.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/ARVRServer.xml.
|
||||
|
||||
.. _class_ARVRServer:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AspectRatioContainer.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AspectRatioContainer.xml.
|
||||
|
||||
.. _class_AspectRatioContainer:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AStar.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AStar.xml.
|
||||
|
||||
.. _class_AStar:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AStar2D.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AStar2D.xml.
|
||||
|
||||
.. _class_AStar2D:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AtlasTexture.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AtlasTexture.xml.
|
||||
|
||||
.. _class_AtlasTexture:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioBusLayout.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioBusLayout.xml.
|
||||
|
||||
.. _class_AudioBusLayout:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffect.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffect.xml.
|
||||
|
||||
.. _class_AudioEffect:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectAmplify.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectAmplify.xml.
|
||||
|
||||
.. _class_AudioEffectAmplify:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectBandLimitFilter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectBandLimitFilter.xml.
|
||||
|
||||
.. _class_AudioEffectBandLimitFilter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectBandPassFilter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectBandPassFilter.xml.
|
||||
|
||||
.. _class_AudioEffectBandPassFilter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectCapture.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectCapture.xml.
|
||||
|
||||
.. _class_AudioEffectCapture:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectChorus.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectChorus.xml.
|
||||
|
||||
.. _class_AudioEffectChorus:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectCompressor.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectCompressor.xml.
|
||||
|
||||
.. _class_AudioEffectCompressor:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectDelay.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectDelay.xml.
|
||||
|
||||
.. _class_AudioEffectDelay:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectDistortion.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectDistortion.xml.
|
||||
|
||||
.. _class_AudioEffectDistortion:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectEQ.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectEQ.xml.
|
||||
|
||||
.. _class_AudioEffectEQ:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectEQ10.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectEQ10.xml.
|
||||
|
||||
.. _class_AudioEffectEQ10:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectEQ21.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectEQ21.xml.
|
||||
|
||||
.. _class_AudioEffectEQ21:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectEQ6.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectEQ6.xml.
|
||||
|
||||
.. _class_AudioEffectEQ6:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectFilter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectFilter.xml.
|
||||
|
||||
.. _class_AudioEffectFilter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectHighPassFilter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectHighPassFilter.xml.
|
||||
|
||||
.. _class_AudioEffectHighPassFilter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectHighShelfFilter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectHighShelfFilter.xml.
|
||||
|
||||
.. _class_AudioEffectHighShelfFilter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectInstance.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectInstance.xml.
|
||||
|
||||
.. _class_AudioEffectInstance:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectLimiter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectLimiter.xml.
|
||||
|
||||
.. _class_AudioEffectLimiter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectLowPassFilter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectLowPassFilter.xml.
|
||||
|
||||
.. _class_AudioEffectLowPassFilter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectLowShelfFilter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectLowShelfFilter.xml.
|
||||
|
||||
.. _class_AudioEffectLowShelfFilter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectNotchFilter.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectNotchFilter.xml.
|
||||
|
||||
.. _class_AudioEffectNotchFilter:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectPanner.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectPanner.xml.
|
||||
|
||||
.. _class_AudioEffectPanner:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectPhaser.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectPhaser.xml.
|
||||
|
||||
.. _class_AudioEffectPhaser:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectPitchShift.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectPitchShift.xml.
|
||||
|
||||
.. _class_AudioEffectPitchShift:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectRecord.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectRecord.xml.
|
||||
|
||||
.. _class_AudioEffectRecord:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectReverb.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectReverb.xml.
|
||||
|
||||
.. _class_AudioEffectReverb:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectSpectrumAnalyzer.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectSpectrumAnalyzer.xml.
|
||||
|
||||
.. _class_AudioEffectSpectrumAnalyzer:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectSpectrumAnalyzerInstance.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectSpectrumAnalyzerInstance.xml.
|
||||
|
||||
.. _class_AudioEffectSpectrumAnalyzerInstance:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioEffectStereoEnhance.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioEffectStereoEnhance.xml.
|
||||
|
||||
.. _class_AudioEffectStereoEnhance:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioServer.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioServer.xml.
|
||||
|
||||
.. _class_AudioServer:
|
||||
|
||||
@@ -486,7 +486,7 @@ Returns the sample rate at the output of the **AudioServer**.
|
||||
|
||||
:ref:`float<class_float>` **get_output_latency** **(** **)** |const|
|
||||
|
||||
Returns the audio driver's output latency.
|
||||
Returns the audio driver's output latency. This can be expensive, it is not recommended to call this every frame.
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStream.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStream.xml.
|
||||
|
||||
.. _class_AudioStream:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamGenerator.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamGenerator.xml.
|
||||
|
||||
.. _class_AudioStreamGenerator:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamGeneratorPlayback.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamGeneratorPlayback.xml.
|
||||
|
||||
.. _class_AudioStreamGeneratorPlayback:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamMicrophone.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamMicrophone.xml.
|
||||
|
||||
.. _class_AudioStreamMicrophone:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/modules/minimp3/doc_classes/AudioStreamMP3.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/modules/minimp3/doc_classes/AudioStreamMP3.xml.
|
||||
|
||||
.. _class_AudioStreamMP3:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/modules/stb_vorbis/doc_classes/AudioStreamOGGVorbis.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/modules/stb_vorbis/doc_classes/AudioStreamOGGVorbis.xml.
|
||||
|
||||
.. _class_AudioStreamOGGVorbis:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamPlayback.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamPlayback.xml.
|
||||
|
||||
.. _class_AudioStreamPlayback:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamPlaybackResampled.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamPlaybackResampled.xml.
|
||||
|
||||
.. _class_AudioStreamPlaybackResampled:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamPlayer.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamPlayer.xml.
|
||||
|
||||
.. _class_AudioStreamPlayer:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamPlayer2D.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamPlayer2D.xml.
|
||||
|
||||
.. _class_AudioStreamPlayer2D:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamPlayer3D.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamPlayer3D.xml.
|
||||
|
||||
.. _class_AudioStreamPlayer3D:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamRandomPitch.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamRandomPitch.xml.
|
||||
|
||||
.. _class_AudioStreamRandomPitch:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/AudioStreamSample.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamSample.xml.
|
||||
|
||||
.. _class_AudioStreamSample:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/BackBufferCopy.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/BackBufferCopy.xml.
|
||||
|
||||
.. _class_BackBufferCopy:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/BakedLightmap.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/BakedLightmap.xml.
|
||||
|
||||
.. _class_BakedLightmap:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/BakedLightmapData.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/BakedLightmapData.xml.
|
||||
|
||||
.. _class_BakedLightmapData:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/BaseButton.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/BaseButton.xml.
|
||||
|
||||
.. _class_BaseButton:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/Basis.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Basis.xml.
|
||||
|
||||
.. _class_Basis:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/BitMap.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/BitMap.xml.
|
||||
|
||||
.. _class_BitMap:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/BitmapFont.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/BitmapFont.xml.
|
||||
|
||||
.. _class_BitmapFont:
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/Bone2D.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/Bone2D.xml.
|
||||
|
||||
.. _class_Bone2D:
|
||||
|
||||
@@ -111,7 +111,7 @@ Method Descriptions
|
||||
|
||||
void **apply_rest** **(** **)**
|
||||
|
||||
Stores the node's current transforms in :ref:`rest<class_Bone2D_property_rest>`.
|
||||
Resets the bone to the rest pose. This is equivalent to setting :ref:`Node2D.transform<class_Node2D_property_transform>` to :ref:`rest<class_Bone2D_property_rest>`.
|
||||
|
||||
.. rst-class:: classref-item-separator
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
.. DO NOT EDIT THIS FILE!!!
|
||||
.. Generated automatically from Godot engine sources.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/BoneAttachment.xml.
|
||||
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
|
||||
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/BoneAttachment.xml.
|
||||
|
||||
.. _class_BoneAttachment:
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user