blob: a74d9805c478f4d136223fe03b6dff2c1543f3d1 (
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
|
<?xml version="1.0" encoding="UTF-8" ?>
<class name="World" inherits="Resource" category="Core" version="3.0-beta">
<brief_description>
Class that has everything pertaining to a world.
</brief_description>
<description>
Class that has everything pertaining to a world. A physics space, a visual scenario and a sound space. Spatial nodes register their resources into the current world.
</description>
<tutorials>
</tutorials>
<demos>
</demos>
<methods>
<method name="get_direct_space_state">
<return type="PhysicsDirectSpaceState">
</return>
<description>
</description>
</method>
<method name="get_environment" qualifiers="const">
<return type="Environment">
</return>
<description>
</description>
</method>
<method name="get_fallback_environment" qualifiers="const">
<return type="Environment">
</return>
<description>
</description>
</method>
<method name="get_scenario" qualifiers="const">
<return type="RID">
</return>
<description>
</description>
</method>
<method name="get_space" qualifiers="const">
<return type="RID">
</return>
<description>
</description>
</method>
<method name="set_environment">
<return type="void">
</return>
<argument index="0" name="env" type="Environment">
</argument>
<description>
</description>
</method>
<method name="set_fallback_environment">
<return type="void">
</return>
<argument index="0" name="env" type="Environment">
</argument>
<description>
</description>
</method>
</methods>
<members>
<member name="environment" type="Environment" setter="set_environment" getter="get_environment">
</member>
<member name="fallback_environment" type="Environment" setter="set_fallback_environment" getter="get_fallback_environment">
</member>
</members>
<constants>
</constants>
</class>
|