blob: 3b7a747bcb85d105ebd97486643d57ba9ed71c7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?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 collisions.
</brief_description>
<description>
Segment shape for 2D collisions. Consists of two points, [code]a[/code] and [code]b[/code].
</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">
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>
</constants>
</class>
|