2017-09-12 22:42:36 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2021-04-26 13:14:51 +02:00
|
|
|
<class name="PhysicsBody2D" inherits="CollisionObject2D" version="3.4">
|
2017-09-12 22:42:36 +02:00
|
|
|
<brief_description>
|
2017-09-17 08:47:20 +02:00
|
|
|
Base class for all objects affected by physics in 2D space.
|
2017-09-12 22:42:36 +02:00
|
|
|
</brief_description>
|
|
|
|
<description>
|
|
|
|
PhysicsBody2D is an abstract base class for implementing a physics body. All *Body2D types inherit from it.
|
|
|
|
</description>
|
|
|
|
<tutorials>
|
2021-03-26 10:43:43 +01:00
|
|
|
<link>https://docs.godotengine.org/en/3.3/tutorials/physics/physics_introduction.html</link>
|
2017-09-12 22:42:36 +02:00
|
|
|
</tutorials>
|
|
|
|
<methods>
|
|
|
|
<method name="add_collision_exception_with">
|
2021-07-30 15:28:05 +02:00
|
|
|
<return type="void" />
|
|
|
|
<argument index="0" name="body" type="Node" />
|
2017-09-12 22:42:36 +02:00
|
|
|
<description>
|
2017-09-17 08:47:20 +02:00
|
|
|
Adds a body to the list of bodies that this body can't collide with.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
</method>
|
2018-10-24 21:32:55 +02:00
|
|
|
<method name="get_collision_exceptions">
|
2021-07-30 15:28:05 +02:00
|
|
|
<return type="Array" />
|
2018-10-24 21:32:55 +02:00
|
|
|
<description>
|
|
|
|
Returns an array of nodes that were added as collision exceptions for this body.
|
|
|
|
</description>
|
|
|
|
</method>
|
2017-09-12 22:42:36 +02:00
|
|
|
<method name="remove_collision_exception_with">
|
2021-07-30 15:28:05 +02:00
|
|
|
<return type="void" />
|
|
|
|
<argument index="0" name="body" type="Node" />
|
2017-09-12 22:42:36 +02:00
|
|
|
<description>
|
2017-09-17 08:47:20 +02:00
|
|
|
Removes a body from the list of bodies that this body can't collide with.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
</methods>
|
|
|
|
<members>
|
2019-09-24 13:34:03 +02:00
|
|
|
<member name="input_pickable" type="bool" setter="set_pickable" getter="is_pickable" override="true" default="false" />
|
2019-06-29 21:22:15 +02:00
|
|
|
<member name="layers" type="int" setter="_set_layers" getter="_get_layers">
|
2020-10-13 14:17:00 +02:00
|
|
|
Both collision_layer and collision_mask. Returns collision_layer when accessed. Updates collision_layer and collision_mask when modified.
|
2017-09-12 22:42:36 +02:00
|
|
|
</member>
|
|
|
|
</members>
|
|
|
|
<constants>
|
|
|
|
</constants>
|
|
|
|
</class>
|