2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2018-02-27 12:40:43 +00:00
<class name= "CollisionPolygon2D" inherits= "Node2D" category= "Core" version= "3.1" >
2017-09-12 20:42:36 +00:00
<brief_description >
2017-10-02 04:13:36 +00:00
Defines a 2D collision polygon.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2017-10-02 04:13:36 +00:00
Provides a 2D collision polygon to a [CollisionObject2D] parent. Polygon can be drawn in the editor or specified by a list of vertices.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
</tutorials>
<demos >
</demos>
<methods >
</methods>
<members >
2017-09-13 06:49:40 +00:00
<member name= "build_mode" type= "int" setter= "set_build_mode" getter= "get_build_mode" enum= "CollisionPolygon2D.BuildMode" >
2017-10-02 04:13:36 +00:00
Collision build mode. Use one of the [code]BUILD_*[/code] constants. Default value: [code]BUILD_SOLIDS[/code].
2017-09-12 20:42:36 +00:00
</member>
2017-09-13 06:49:40 +00:00
<member name= "disabled" type= "bool" setter= "set_disabled" getter= "is_disabled" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], no collisions will be detected.
2017-09-12 20:42:36 +00:00
</member>
2017-09-13 06:49:40 +00:00
<member name= "one_way_collision" type= "bool" setter= "set_one_way_collision" getter= "is_one_way_collision_enabled" >
2018-12-20 12:46:54 +00:00
If [code]true[/code], only edges that face up, relative to CollisionPolygon2D's rotation, will collide with other objects.
2017-09-12 20:42:36 +00:00
</member>
2019-01-26 21:21:53 +00:00
<member name= "one_way_collision_margin" type= "float" setter= "set_one_way_collision_margin" getter= "get_one_way_collision_margin" >
</member>
2017-09-13 06:49:40 +00:00
<member name= "polygon" type= "PoolVector2Array" setter= "set_polygon" getter= "get_polygon" >
2019-02-20 04:03:40 +00:00
The polygon's list of vertices. The final point will be connected to the first. The returned value is a clone of the PoolVector2Array, not a reference.
2017-09-12 20:42:36 +00:00
</member>
</members>
<constants >
2017-11-24 22:16:30 +00:00
<constant name= "BUILD_SOLIDS" value= "0" enum= "BuildMode" >
2017-10-02 04:13:36 +00:00
Collisions will include the polygon and its contained area.
2017-09-15 23:46:14 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "BUILD_SEGMENTS" value= "1" enum= "BuildMode" >
2017-10-02 04:13:36 +00:00
Collisions will only include the polygon edges.
2017-09-15 23:46:14 +00:00
</constant>
2017-09-12 20:42:36 +00:00
</constants>
</class>