summaryrefslogtreecommitdiff
path: root/doc/classes/VisualInstance.xml
blob: 7576bf7ad805fdde222e255937e755e5e684192e (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
<?xml version="1.0" encoding="UTF-8" ?>
<class name="VisualInstance" inherits="Spatial" category="Core" version="3.2">
	<brief_description>
	</brief_description>
	<description>
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="get_aabb" qualifiers="const">
			<return type="AABB">
			</return>
			<description>
				Returns the [AABB] (also known as the bounding box) for this VisualInstance.
			</description>
		</method>
		<method name="get_base" qualifiers="const">
			<return type="RID">
			</return>
			<description>
			</description>
		</method>
		<method name="get_instance" qualifiers="const">
			<return type="RID">
			</return>
			<description>
			</description>
		</method>
		<method name="get_layer_mask_bit" qualifiers="const">
			<return type="bool">
			</return>
			<argument index="0" name="layer" type="int">
			</argument>
			<description>
			</description>
		</method>
		<method name="get_transformed_aabb" qualifiers="const">
			<return type="AABB">
			</return>
			<description>
				Returns the transformed [AABB] (also known as the bounding box) for this VisualInstance.
				Transformed in this case means the [AABB] plus the position, rotation, and scale of the [Spatial]s [Transform]
			</description>
		</method>
		<method name="set_base">
			<return type="void">
			</return>
			<argument index="0" name="base" type="RID">
			</argument>
			<description>
				Sets the base of the VisualInstance, which changes how the engine handles the VisualInstance under the hood.
				It is recommended to only use [method set_base] if you know what you're doing.
			</description>
		</method>
		<method name="set_layer_mask_bit">
			<return type="void">
			</return>
			<argument index="0" name="layer" type="int">
			</argument>
			<argument index="1" name="enabled" type="bool">
			</argument>
			<description>
			</description>
		</method>
	</methods>
	<members>
		<member name="layers" type="int" setter="set_layer_mask" getter="get_layer_mask" default="1">
			The render layer(s) this VisualInstance is drawn on.
			This object will only be visible for [Camera]s whose cull mask includes the render object this VisualInstance is set to.
		</member>
	</members>
	<constants>
	</constants>
</class>