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

@@ -13,70 +13,6 @@
<demos>
</demos>
<methods>
<method name="get_bounce" qualifiers="const">
<return type="float">
</return>
<description>
Return the body bounciness.
</description>
</method>
<method name="get_constant_angular_velocity" qualifiers="const">
<return type="Vector3">
</return>
<description>
Return the constant angular velocity for the body.
</description>
</method>
<method name="get_constant_linear_velocity" qualifiers="const">
<return type="Vector3">
</return>
<description>
Return the constant linear velocity for the body.
</description>
</method>
<method name="get_friction" qualifiers="const">
<return type="float">
</return>
<description>
Return the body friction.
</description>
</method>
<method name="set_bounce">
<return type="void">
</return>
<argument index="0" name="bounce" type="float">
</argument>
<description>
Set the body bounciness, from 0 (not bouncy) to 1 (bouncy).
</description>
</method>
<method name="set_constant_angular_velocity">
<return type="void">
</return>
<argument index="0" name="vel" type="Vector3">
</argument>
<description>
Set a constant angular velocity for the body. This does not rotate the body, but affects other bodies touching it, as if it was rotating.
</description>
</method>
<method name="set_constant_linear_velocity">
<return type="void">
</return>
<argument index="0" name="vel" type="Vector3">
</argument>
<description>
Set a constant linear velocity for the body. This does not move the body, but affects other bodies touching it, as if it was moving.
</description>
</method>
<method name="set_friction">
<return type="void">
</return>
<argument index="0" name="friction" type="float">
</argument>
<description>
Set the body friction, from 0 (frictionless) to 1 (full friction).
</description>
</method>
</methods>
<members>
<member name="bounce" type="float" setter="set_bounce" getter="get_bounce">