Changed the doc class generation to individual files per class. It is also possible to save module files in module directories and the build system will
recognize them.
This commit is contained in:
parent
175777596e
commit
4f929a0fdf
471 changed files with 63732 additions and 61317 deletions
55
doc/classes/SegmentShape2D.xml
Normal file
55
doc/classes/SegmentShape2D.xml
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<?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.
|
||||
</brief_description>
|
||||
<description>
|
||||
Segment Shape for 2D Collision Detection, consists of two points, 'a' and 'b'.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
<demos>
|
||||
</demos>
|
||||
<methods>
|
||||
<method name="get_a" qualifiers="const">
|
||||
<return type="Vector2">
|
||||
</return>
|
||||
<description>
|
||||
Return the first point's position.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_b" qualifiers="const">
|
||||
<return type="Vector2">
|
||||
</return>
|
||||
<description>
|
||||
Return the second point's position.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_a">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="a" type="Vector2">
|
||||
</argument>
|
||||
<description>
|
||||
Set the first point's position.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_b">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="b" type="Vector2">
|
||||
</argument>
|
||||
<description>
|
||||
Set the second point's position.
|
||||
</description>
|
||||
</method>
|
||||
</methods>
|
||||
<members>
|
||||
<member name="a" type="Vector2" setter="set_a" getter="get_a" brief="">
|
||||
</member>
|
||||
<member name="b" type="Vector2" setter="set_b" getter="get_b" brief="">
|
||||
</member>
|
||||
</members>
|
||||
<constants>
|
||||
</constants>
|
||||
</class>
|
||||
Loading…
Add table
Add a link
Reference in a new issue