2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-03-30 18:22:57 +02:00
<class name= "PhysicsDirectBodyState2D" inherits= "Object" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2020-03-30 18:22:57 +02:00
Direct access object to a physics body in the [PhysicsServer2D].
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-03-30 18:22:57 +02:00
Provides direct access to a physics body in the [PhysicsServer2D], allowing safe changes to physics properties. This object is passed via the direct state callback of rigid/character bodies, and is intended for changing the direct state of that body. See [method RigidBody2D._integrate_forces].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2020-08-05 14:43:40 +02:00
<link title= "Ray-casting" > https://docs.godotengine.org/en/latest/tutorials/physics/ray-casting.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
2018-07-26 11:56:21 +02:00
<method name= "add_central_force" >
<return type= "void" >
</return>
<argument index= "0" name= "force" type= "Vector2" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Adds a constant directional force without affecting rotation.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "add_force" >
<return type= "void" >
</return>
2020-03-26 05:23:34 +01:00
<argument index= "0" name= "force" type= "Vector2" >
2018-07-26 11:56:21 +02:00
</argument>
2020-03-26 05:23:34 +01:00
<argument index= "1" name= "position" type= "Vector2" default= "Vector2( 0, 0 )" >
2018-07-26 11:56:21 +02:00
</argument>
<description >
2019-03-26 05:20:52 +01:00
Adds a positioned force to the body. Both the force and the offset from the body origin are in global coordinates.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "add_torque" >
<return type= "void" >
</return>
<argument index= "0" name= "torque" type= "float" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Adds a constant rotational force.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "apply_central_impulse" >
<return type= "void" >
</return>
<argument index= "0" name= "impulse" type= "Vector2" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Applies a directional impulse without affecting rotation.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "apply_impulse" >
<return type= "void" >
</return>
2020-03-26 05:23:34 +01:00
<argument index= "0" name= "impulse" type= "Vector2" >
2018-07-26 11:56:21 +02:00
</argument>
2020-03-26 05:23:34 +01:00
<argument index= "1" name= "position" type= "Vector2" default= "Vector2( 0, 0 )" >
2018-07-26 11:56:21 +02:00
</argument>
<description >
2019-06-22 01:04:47 +02:00
Applies a positioned impulse to the body. An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason, it should only be used when simulating one-time impacts (use the "_force" functions otherwise). The offset uses the rotation of the global coordinate system, but is centered at the object's origin.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "apply_torque_impulse" >
<return type= "void" >
</return>
<argument index= "0" name= "impulse" type= "float" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Applies a rotational impulse to the body.
2018-07-26 11:56:21 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_contact_collider" qualifiers= "const" >
<return type= "RID" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the collider's [RID].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_contact_collider_id" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the collider's object id.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_contact_collider_object" qualifiers= "const" >
<return type= "Object" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the collider object. This depends on how it was created (will return a scene node if such was used to create it).
2017-09-12 22:42:36 +02:00
</description>
</method>
2017-09-10 15:37:49 +02:00
<method name= "get_contact_collider_position" qualifiers= "const" >
2017-09-12 22:42:36 +02:00
<return type= "Vector2" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the contact position in the collider.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_contact_collider_shape" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the collider's shape index.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_contact_collider_shape_metadata" qualifiers= "const" >
<return type= "Variant" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2020-03-30 18:22:57 +02:00
Returns the collided shape's metadata. This metadata is different from [method Object.get_meta], and is set with [method PhysicsServer2D.shape_set_data].
2017-09-12 22:42:36 +02:00
</description>
</method>
2017-09-10 15:37:49 +02:00
<method name= "get_contact_collider_velocity_at_position" qualifiers= "const" >
2017-09-12 22:42:36 +02:00
<return type= "Vector2" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the linear velocity vector at the collider's contact point.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_contact_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2019-06-22 01:04:47 +02:00
Returns the number of contacts this body has with other bodies.
[b]Note:[/b] By default, this returns 0 unless bodies are configured to monitor contacts. See [member RigidBody2D.contact_monitor].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_contact_local_normal" qualifiers= "const" >
<return type= "Vector2" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the local normal at the contact point.
2017-09-12 22:42:36 +02:00
</description>
</method>
2017-09-10 15:37:49 +02:00
<method name= "get_contact_local_position" qualifiers= "const" >
2017-09-12 22:42:36 +02:00
<return type= "Vector2" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the local position of the contact point.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_contact_local_shape" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "contact_idx" type= "int" >
</argument>
<description >
2019-03-26 05:20:52 +01:00
Returns the local shape index of the collision.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_space_state" >
2020-03-30 18:22:57 +02:00
<return type= "PhysicsDirectSpaceState2D" >
2017-09-12 22:42:36 +02:00
</return>
<description >
2019-03-26 05:20:52 +01:00
Returns the current state of the space, useful for queries.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "integrate_forces" >
<return type= "void" >
</return>
<description >
2019-03-26 05:20:52 +01:00
Calls the built-in force integration code.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
2018-01-11 23:38:35 +01:00
<members >
<member name= "angular_velocity" type= "float" setter= "set_angular_velocity" getter= "get_angular_velocity" >
2019-03-26 05:20:52 +01:00
The body's rotational velocity.
2018-01-11 23:38:35 +01:00
</member>
<member name= "inverse_inertia" type= "float" setter= "" getter= "get_inverse_inertia" >
The inverse of the inertia of the body.
</member>
<member name= "inverse_mass" type= "float" setter= "" getter= "get_inverse_mass" >
The inverse of the mass of the body.
</member>
<member name= "linear_velocity" type= "Vector2" setter= "set_linear_velocity" getter= "get_linear_velocity" >
2019-03-26 05:20:52 +01:00
The body's linear velocity.
2018-01-11 23:38:35 +01:00
</member>
<member name= "sleeping" type= "bool" setter= "set_sleep_state" getter= "is_sleeping" >
2019-03-26 05:20:52 +01:00
If [code]true[/code], this body is currently sleeping (not active).
2018-01-11 23:38:35 +01:00
</member>
<member name= "step" type= "float" setter= "" getter= "get_step" >
The timestep (delta) used for the simulation.
</member>
<member name= "total_angular_damp" type= "float" setter= "" getter= "get_total_angular_damp" >
The rate at which the body stops rotating, if there are not any other forces moving it.
</member>
<member name= "total_gravity" type= "Vector2" setter= "" getter= "get_total_gravity" >
The total gravity vector being currently applied to this body.
</member>
<member name= "total_linear_damp" type= "float" setter= "" getter= "get_total_linear_damp" >
The rate at which the body stops moving, if there are not any other forces moving it.
</member>
<member name= "transform" type= "Transform2D" setter= "set_transform" getter= "get_transform" >
2019-03-26 05:20:52 +01:00
The body's transformation matrix.
2018-01-11 23:38:35 +01:00
</member>
</members>
2017-09-12 22:42:36 +02:00
<constants >
</constants>
</class>