summaryrefslogtreecommitdiffstats
path: root/doc/classes/PhysicsServer3DRenderingServerHandler.xml
blob: c04dbf2bd705adc72b9e997c7551a9608313bed9 (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
<?xml version="1.0" encoding="UTF-8" ?>
<class name="PhysicsServer3DRenderingServerHandler" inherits="Object" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		A class used to provide [method PhysicsServer3DExtension._soft_body_update_rendering_server] with a rendering handler for soft bodies.
	</brief_description>
	<description>
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="_set_aabb" qualifiers="virtual">
			<return type="void" />
			<param index="0" name="aabb" type="AABB" />
			<description>
				Called by the [PhysicsServer3D] to set the bounding box for the [SoftBody3D].
			</description>
		</method>
		<method name="_set_normal" qualifiers="virtual">
			<return type="void" />
			<param index="0" name="vertex_id" type="int" />
			<param index="1" name="normal" type="Vector3" />
			<description>
				Called by the [PhysicsServer3D] to set the normal for the [SoftBody3D] vertex at the index specified by [param vertex_id].
				[b]Note:[/b] The [param normal] parameter used to be of type [code]const void*[/code] prior to Godot 4.2.
			</description>
		</method>
		<method name="_set_vertex" qualifiers="virtual">
			<return type="void" />
			<param index="0" name="vertex_id" type="int" />
			<param index="1" name="vertex" type="Vector3" />
			<description>
				Called by the [PhysicsServer3D] to set the position for the [SoftBody3D] vertex at the index specified by [param vertex_id].
				[b]Note:[/b] The [param vertex] parameter used to be of type [code]const void*[/code] prior to Godot 4.2.
			</description>
		</method>
		<method name="set_aabb">
			<return type="void" />
			<param index="0" name="aabb" type="AABB" />
			<description>
				Sets the bounding box for the [SoftBody3D].
			</description>
		</method>
		<method name="set_normal">
			<return type="void" />
			<param index="0" name="vertex_id" type="int" />
			<param index="1" name="normal" type="Vector3" />
			<description>
				Sets the normal for the [SoftBody3D] vertex at the index specified by [param vertex_id].
			</description>
		</method>
		<method name="set_vertex">
			<return type="void" />
			<param index="0" name="vertex_id" type="int" />
			<param index="1" name="vertex" type="Vector3" />
			<description>
				Sets the position for the [SoftBody3D] vertex at the index specified by [param vertex_id].
			</description>
		</method>
	</methods>
</class>