diff options
author | William Taylor <williamt@rebelfactions.com> | 2017-09-16 21:06:58 -0700 |
---|---|---|
committer | William Taylor <williamt@rebelfactions.com> | 2017-09-16 21:55:23 -0700 |
commit | d2419c840e221c6bf6d7b493f26db861f591d5c6 (patch) | |
tree | cda522269394d431cebafc328916c70e2d69e187 /doc/classes/SegmentShape2D.xml | |
parent | d8ca7d44059472344a7e14346feae8e478486d3c (diff) | |
download | redot-engine-d2419c840e221c6bf6d7b493f26db861f591d5c6.tar.gz |
[DOCS] added member descriptions to various shapes
Diffstat (limited to 'doc/classes/SegmentShape2D.xml')
-rw-r--r-- | doc/classes/SegmentShape2D.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/classes/SegmentShape2D.xml b/doc/classes/SegmentShape2D.xml index 0e2c5c86f3..3b7a747bcb 100644 --- a/doc/classes/SegmentShape2D.xml +++ b/doc/classes/SegmentShape2D.xml @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="SegmentShape2D" inherits="Shape2D" category="Core" version="3.0.alpha.custom_build"> <brief_description> - Segment Shape for 2D Collision Detection. + Segment shape for 2D collisions. </brief_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> <tutorials> </tutorials> @@ -46,8 +46,10 @@ </methods> <members> <member name="a" type="Vector2" setter="set_a" getter="get_a"> + The segment's first point position. </member> <member name="b" type="Vector2" setter="set_b" getter="get_b"> + The segment's second point position. </member> </members> <constants> |