summaryrefslogtreecommitdiff
path: root/doc/classes/PinJoint3D.xml
blob: 013a18b92c3ced4921f3ad1c676b7237b07d8b6d (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
<?xml version="1.0" encoding="UTF-8" ?>
<class name="PinJoint3D" inherits="Joint3D" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		Pin joint for 3D PhysicsBodies.
	</brief_description>
	<description>
		Pin joint for 3D rigid bodies. It pins 2 bodies (dynamic or static) together. See also [Generic6DOFJoint3D].
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="get_param" qualifiers="const">
			<return type="float" />
			<argument index="0" name="param" type="int" enum="PinJoint3D.Param" />
			<description>
				Returns the value of the specified parameter.
			</description>
		</method>
		<method name="set_param">
			<return type="void" />
			<argument index="0" name="param" type="int" enum="PinJoint3D.Param" />
			<argument index="1" name="value" type="float" />
			<description>
				Sets the value of the specified parameter.
			</description>
		</method>
	</methods>
	<members>
		<member name="params/bias" type="float" setter="set_param" getter="get_param" default="0.3">
			The force with which the pinned objects stay in positional relation to each other. The higher, the stronger.
		</member>
		<member name="params/damping" type="float" setter="set_param" getter="get_param" default="1.0">
			The force with which the pinned objects stay in velocity relation to each other. The higher, the stronger.
		</member>
		<member name="params/impulse_clamp" type="float" setter="set_param" getter="get_param" default="0.0">
			If above 0, this value is the maximum value for an impulse that this Joint3D produces.
		</member>
	</members>
	<constants>
		<constant name="PARAM_BIAS" value="0" enum="Param">
			The force with which the pinned objects stay in positional relation to each other. The higher, the stronger.
		</constant>
		<constant name="PARAM_DAMPING" value="1" enum="Param">
			The force with which the pinned objects stay in velocity relation to each other. The higher, the stronger.
		</constant>
		<constant name="PARAM_IMPULSE_CLAMP" value="2" enum="Param">
			If above 0, this value is the maximum value for an impulse that this Joint3D produces.
		</constant>
	</constants>
</class>