Merge pull request #11349 from willt/getsetmove
[DOCS] added member descriptions to various shapes [ci skip]
This commit is contained in:
commit
a829c77a58
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="CapsuleShape" inherits="Shape" category="Core" version="3.0.alpha.custom_build">
|
<class name="CapsuleShape" inherits="Shape" category="Core" version="3.0.alpha.custom_build">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Capsule shape resource.
|
Capsule shape for collisions.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Capsule shape resource, which can be set into a [PhysicsBody] or area.
|
Capsule shape for collisions.
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
@ -46,8 +46,10 @@
|
||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="height" type="float" setter="set_height" getter="get_height">
|
<member name="height" type="float" setter="set_height" getter="get_height">
|
||||||
|
The capsule's height.
|
||||||
</member>
|
</member>
|
||||||
<member name="radius" type="float" setter="set_radius" getter="get_radius">
|
<member name="radius" type="float" setter="set_radius" getter="get_radius">
|
||||||
|
The capsule's radius.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="CapsuleShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
<class name="CapsuleShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Capsule 2D shape resource for physics.
|
Capsule shape for 2D collisions.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Capsule 2D shape resource for physics. A capsule (or sometimes called "pill") is like a line grown in all directions. It has a radius and a height, and is often useful for modeling biped characters.
|
Capsule shape for 2D collisions.
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
@ -46,8 +46,10 @@
|
||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="height" type="float" setter="set_height" getter="get_height">
|
<member name="height" type="float" setter="set_height" getter="get_height">
|
||||||
|
The capsule's height.
|
||||||
</member>
|
</member>
|
||||||
<member name="radius" type="float" setter="set_radius" getter="get_radius">
|
<member name="radius" type="float" setter="set_radius" getter="get_radius">
|
||||||
|
The capsules's radius.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="CircleShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
<class name="CircleShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Circular Shape for 2D Physics.
|
Circular shape for 2D collisions.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Circular Shape for 2D Physics. This shape is useful for modeling balls or small characters and its collision detection with everything else is very fast.
|
Circular shape for 2D collisions. This shape is useful for modeling balls or small characters and its collision detection with everything else is very fast.
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="radius" type="float" setter="set_radius" getter="get_radius">
|
<member name="radius" type="float" setter="set_radius" getter="get_radius">
|
||||||
|
The circle's radius.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="LineShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
<class name="LineShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Line shape for 2D collision objects.
|
Line shape for 2D collisions.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Line shape for 2D collision objects. It works like a 2D plane and will not allow any body to go to the negative side. Not recommended for rigid bodies, and usually not recommended for static bodies either because it forces checks against it on every frame.
|
Line shape for 2D collisions. It works like a 2D plane and will not allow any body to go to the negative side. Not recommended for rigid bodies, and usually not recommended for static bodies either because it forces checks against it on every frame.
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
@ -46,8 +46,10 @@
|
||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="d" type="float" setter="set_d" getter="get_d">
|
<member name="d" type="float" setter="set_d" getter="get_d">
|
||||||
|
The line's distance from the origin.
|
||||||
</member>
|
</member>
|
||||||
<member name="normal" type="Vector2" setter="set_normal" getter="get_normal">
|
<member name="normal" type="Vector2" setter="set_normal" getter="get_normal">
|
||||||
|
The line's normal.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="RayShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
<class name="RayShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Ray 2D shape resource for physics.
|
Ray shape for 2D collisions.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Ray 2D shape resource for physics. A ray is not really a collision body, instead it tries to separate itself from whatever is touching its far endpoint. It's often useful for characters.
|
Ray shape for 2D collisions. A ray is not really a collision body, instead it tries to separate itself from whatever is touching its far endpoint. It's often useful for characters.
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="length" type="float" setter="set_length" getter="get_length">
|
<member name="length" type="float" setter="set_length" getter="get_length">
|
||||||
|
The ray's length.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="RectangleShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
<class name="RectangleShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Rectangle Shape for 2D Physics.
|
Rectangle shape for 2D collisions.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Rectangle Shape for 2D Physics. This shape is useful for modeling box-like 2D objects.
|
Rectangle shape for 2D collisions. This shape is useful for modeling box-like 2D objects.
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="extents" type="Vector2" setter="set_extents" getter="get_extents">
|
<member name="extents" type="Vector2" setter="set_extents" getter="get_extents">
|
||||||
|
The rectangle's half extents. The width and height of this shape is twice the half extents.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="SegmentShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
<class name="SegmentShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Segment Shape for 2D Collision Detection.
|
Segment shape for 2D collisions.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Segment Shape for 2D Collision Detection, consists of two points, 'a' and 'b'.
|
Segment shape for 2D collisions. Consists of two points, [code]a[/code] and [code]b[/code].
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
@ -46,8 +46,10 @@
|
||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="a" type="Vector2" setter="set_a" getter="get_a">
|
<member name="a" type="Vector2" setter="set_a" getter="get_a">
|
||||||
|
The segment's first point position.
|
||||||
</member>
|
</member>
|
||||||
<member name="b" type="Vector2" setter="set_b" getter="get_b">
|
<member name="b" type="Vector2" setter="set_b" getter="get_b">
|
||||||
|
The segment's second point position.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
|
Loading…
Reference in New Issue