doc: Remove setters and getters now exposed via properties/members

This commit is contained in:
Rémi Verschelde
2017-11-24 18:10:32 +01:00
parent 31f62f53c5
commit 92f07fefcd
251 changed files with 0 additions and 17248 deletions

View File

@@ -29,41 +29,6 @@
Returns the angle between the node and the 'point' in radians.
</description>
</method>
<method name="get_global_position" qualifiers="const">
<return type="Vector2">
</return>
<description>
Returns the node's global position.
</description>
</method>
<method name="get_global_rotation" qualifiers="const">
<return type="float">
</return>
<description>
Returns the node's global rotation in radians.
</description>
</method>
<method name="get_global_rotation_degrees" qualifiers="const">
<return type="float">
</return>
<description>
Return the node's global rotation in degrees.
</description>
</method>
<method name="get_global_scale" qualifiers="const">
<return type="Vector2">
</return>
<description>
Returns the node's global scale.
</description>
</method>
<method name="get_position" qualifiers="const">
<return type="Vector2">
</return>
<description>
Returns the node's position.
</description>
</method>
<method name="get_relative_transform_to_parent" qualifiers="const">
<return type="Transform2D">
</return>
@@ -73,34 +38,6 @@
Returns the [Transform2D] relative to this node's parent.
</description>
</method>
<method name="get_rotation" qualifiers="const">
<return type="float">
</return>
<description>
Returns the node's rotation in radians.
</description>
</method>
<method name="get_rotation_degrees" qualifiers="const">
<return type="float">
</return>
<description>
Returns the node's rotation in degrees.
</description>
</method>
<method name="get_scale" qualifiers="const">
<return type="Vector2">
</return>
<description>
Returns the node's scale.
</description>
</method>
<method name="get_z" qualifiers="const">
<return type="int">
</return>
<description>
Returns the node's Z-index.
</description>
</method>
<method name="global_translate">
<return type="void">
</return>
@@ -110,13 +47,6 @@
Adds the 'offset' vector to the node's global position.
</description>
</method>
<method name="is_z_relative" qualifiers="const">
<return type="bool">
</return>
<description>
Returns true if this node's Z-index is relative to its parent's. Else, returns false.
</description>
</method>
<method name="look_at">
<return type="void">
</return>
@@ -157,114 +87,6 @@
Applies a rotation to the node, in radians, starting from its current rotation.
</description>
</method>
<method name="set_global_position">
<return type="void">
</return>
<argument index="0" name="position" type="Vector2">
</argument>
<description>
Sets the node's global position.
</description>
</method>
<method name="set_global_rotation">
<return type="void">
</return>
<argument index="0" name="radians" type="float">
</argument>
<description>
Sets the node's global rotation in radians.
</description>
</method>
<method name="set_global_rotation_degrees">
<return type="void">
</return>
<argument index="0" name="degrees" type="float">
</argument>
<description>
Sets the node's global rotation in degrees.
</description>
</method>
<method name="set_global_scale">
<return type="void">
</return>
<argument index="0" name="scale" type="Vector2">
</argument>
<description>
Sets the node's global scale.
</description>
</method>
<method name="set_global_transform">
<return type="void">
</return>
<argument index="0" name="xform" type="Transform2D">
</argument>
<description>
Sets the node's global [Transform2D].
</description>
</method>
<method name="set_position">
<return type="void">
</return>
<argument index="0" name="position" type="Vector2">
</argument>
<description>
Sets the node's position.
</description>
</method>
<method name="set_rotation">
<return type="void">
</return>
<argument index="0" name="radians" type="float">
</argument>
<description>
Sets the node's rotation in radians.
</description>
</method>
<method name="set_rotation_degrees">
<return type="void">
</return>
<argument index="0" name="degrees" type="float">
</argument>
<description>
Sets the node's rotation in degrees.
</description>
</method>
<method name="set_scale">
<return type="void">
</return>
<argument index="0" name="scale" type="Vector2">
</argument>
<description>
Sets the node's scale.
</description>
</method>
<method name="set_transform">
<return type="void">
</return>
<argument index="0" name="xform" type="Transform2D">
</argument>
<description>
Sets the node's local [Transform2D].
</description>
</method>
<method name="set_z">
<return type="void">
</return>
<argument index="0" name="z" type="int">
</argument>
<description>
Sets the node's Z-index.
</description>
</method>
<method name="set_z_as_relative">
<return type="void">
</return>
<argument index="0" name="enable" type="bool">
</argument>
<description>
Makes the node's Z-index relative to its parent's Z-index. If this node's Z-index is 2 and its parent's effective Z-index is 3, then this node's effective Z-index will be 2 + 3 = 5.
</description>
</method>
<method name="to_global" qualifiers="const">
<return type="Vector2">
</return>