summaryrefslogtreecommitdiffstats
path: root/doc/classes/PhysicsDirectSpaceState3DExtension.xml
blob: 372b059cb6cb8c5af8823b3cb3936a67fcd68c12 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="UTF-8" ?>
<class name="PhysicsDirectSpaceState3DExtension" inherits="PhysicsDirectSpaceState3D" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		Provides virtual methods that can be overridden to create custom [PhysicsDirectSpaceState3D] implementations.
	</brief_description>
	<description>
		This class extends [PhysicsDirectSpaceState3D] by providing additional virtual methods that can be overridden. When these methods are overridden, they will be called instead of the internal methods of the physics server.
		Intended for use with GDExtension to create custom implementations of [PhysicsDirectSpaceState3D].
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="_cast_motion" qualifiers="virtual">
			<return type="bool" />
			<param index="0" name="shape_rid" type="RID" />
			<param index="1" name="transform" type="Transform3D" />
			<param index="2" name="motion" type="Vector3" />
			<param index="3" name="margin" type="float" />
			<param index="4" name="collision_mask" type="int" />
			<param index="5" name="collide_with_bodies" type="bool" />
			<param index="6" name="collide_with_areas" type="bool" />
			<param index="7" name="closest_safe" type="float*" />
			<param index="8" name="closest_unsafe" type="float*" />
			<param index="9" name="info" type="PhysicsServer3DExtensionShapeRestInfo*" />
			<description>
			</description>
		</method>
		<method name="_collide_shape" qualifiers="virtual">
			<return type="bool" />
			<param index="0" name="shape_rid" type="RID" />
			<param index="1" name="transform" type="Transform3D" />
			<param index="2" name="motion" type="Vector3" />
			<param index="3" name="margin" type="float" />
			<param index="4" name="collision_mask" type="int" />
			<param index="5" name="collide_with_bodies" type="bool" />
			<param index="6" name="collide_with_areas" type="bool" />
			<param index="7" name="results" type="void*" />
			<param index="8" name="max_results" type="int" />
			<param index="9" name="result_count" type="int32_t*" />
			<description>
			</description>
		</method>
		<method name="_get_closest_point_to_object_volume" qualifiers="virtual const">
			<return type="Vector3" />
			<param index="0" name="object" type="RID" />
			<param index="1" name="point" type="Vector3" />
			<description>
			</description>
		</method>
		<method name="_intersect_point" qualifiers="virtual">
			<return type="int" />
			<param index="0" name="position" type="Vector3" />
			<param index="1" name="collision_mask" type="int" />
			<param index="2" name="collide_with_bodies" type="bool" />
			<param index="3" name="collide_with_areas" type="bool" />
			<param index="4" name="results" type="PhysicsServer3DExtensionShapeResult*" />
			<param index="5" name="max_results" type="int" />
			<description>
			</description>
		</method>
		<method name="_intersect_ray" qualifiers="virtual">
			<return type="bool" />
			<param index="0" name="from" type="Vector3" />
			<param index="1" name="to" type="Vector3" />
			<param index="2" name="collision_mask" type="int" />
			<param index="3" name="collide_with_bodies" type="bool" />
			<param index="4" name="collide_with_areas" type="bool" />
			<param index="5" name="hit_from_inside" type="bool" />
			<param index="6" name="hit_back_faces" type="bool" />
			<param index="7" name="pick_ray" type="bool" />
			<param index="8" name="result" type="PhysicsServer3DExtensionRayResult*" />
			<description>
			</description>
		</method>
		<method name="_intersect_shape" qualifiers="virtual">
			<return type="int" />
			<param index="0" name="shape_rid" type="RID" />
			<param index="1" name="transform" type="Transform3D" />
			<param index="2" name="motion" type="Vector3" />
			<param index="3" name="margin" type="float" />
			<param index="4" name="collision_mask" type="int" />
			<param index="5" name="collide_with_bodies" type="bool" />
			<param index="6" name="collide_with_areas" type="bool" />
			<param index="7" name="result_count" type="PhysicsServer3DExtensionShapeResult*" />
			<param index="8" name="max_results" type="int" />
			<description>
			</description>
		</method>
		<method name="_rest_info" qualifiers="virtual">
			<return type="bool" />
			<param index="0" name="shape_rid" type="RID" />
			<param index="1" name="transform" type="Transform3D" />
			<param index="2" name="motion" type="Vector3" />
			<param index="3" name="margin" type="float" />
			<param index="4" name="collision_mask" type="int" />
			<param index="5" name="collide_with_bodies" type="bool" />
			<param index="6" name="collide_with_areas" type="bool" />
			<param index="7" name="rest_info" type="PhysicsServer3DExtensionShapeRestInfo*" />
			<description>
			</description>
		</method>
		<method name="is_body_excluded_from_query" qualifiers="const">
			<return type="bool" />
			<param index="0" name="body" type="RID" />
			<description>
			</description>
		</method>
	</methods>
</class>