summaryrefslogtreecommitdiff
path: root/doc/classes/DampedSpringJoint2D.xml
blob: 18554820fa3b76e762a78c920b8e6a806179be85 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8" ?>
<class name="DampedSpringJoint2D" inherits="Joint2D" category="Core" version="3.0.alpha.custom_build">
	<brief_description>
		Damped spring constraint for 2D physics.
	</brief_description>
	<description>
		Damped spring constraint for 2D physics. This resembles a spring joint that always wants to go back to a given length.
	</description>
	<tutorials>
	</tutorials>
	<demos>
	</demos>
	<methods>
		<method name="get_damping" qualifiers="const">
			<return type="float">
			</return>
			<description>
				Return the damping ratio of the spring joint. A value of 0 indicates an undamped spring, while 1 causes the system to reach equilibrium as fast as possible (critical damping).
			</description>
		</method>
		<method name="get_length" qualifiers="const">
			<return type="float">
			</return>
			<description>
				Return the maximum length of the spring joint.
			</description>
		</method>
		<method name="get_rest_length" qualifiers="const">
			<return type="float">
			</return>
			<description>
				Return the resting length of the spring joint. The joint will always try to go to back this length when pulled apart.
			</description>
		</method>
		<method name="get_stiffness" qualifiers="const">
			<return type="float">
			</return>
			<description>
				Return the stiffness of the spring joint. The joint applies a force equal to the stiffness times the distance from its resting length.
			</description>
		</method>
		<method name="set_damping">
			<return type="void">
			</return>
			<argument index="0" name="damping" type="float">
			</argument>
			<description>
				Set the damping ratio of the spring joint. A value of 0 indicates an undamped spring, while 1 causes the system to reach equilibrium as fast as possible (critical damping).
			</description>
		</method>
		<method name="set_length">
			<return type="void">
			</return>
			<argument index="0" name="length" type="float">
			</argument>
			<description>
				Set the maximum length of the spring joint.
			</description>
		</method>
		<method name="set_rest_length">
			<return type="void">
			</return>
			<argument index="0" name="rest_length" type="float">
			</argument>
			<description>
				Set the resting length of the spring joint. The joint will always try to go to back this length when pulled apart.
			</description>
		</method>
		<method name="set_stiffness">
			<return type="void">
			</return>
			<argument index="0" name="stiffness" type="float">
			</argument>
			<description>
				Set the stiffness of the spring joint. The joint applies a force equal to the stiffness times the distance from its resting length.
			</description>
		</method>
	</methods>
	<members>
		<member name="damping" type="float" setter="set_damping" getter="get_damping">
		</member>
		<member name="length" type="float" setter="set_length" getter="get_length">
		</member>
		<member name="rest_length" type="float" setter="set_rest_length" getter="get_rest_length">
		</member>
		<member name="stiffness" type="float" setter="set_stiffness" getter="get_stiffness">
		</member>
	</members>
	<constants>
	</constants>
</class>