diff options
| author | Bojidar Marinov | 2018-01-12 00:38:35 +0200 |
|---|---|---|
| committer | Bojidar Marinov | 2018-01-12 00:58:22 +0200 |
| commit | ad79c703008394a360eb9875196a9414e1c84585 (patch) | |
| tree | 99087c85636f2caf8717e42660017d9beb8a0f1f /doc/classes/World.xml | |
| parent | 9b8e8b2220b4e2bac3310262d3d1cd7a8eb3b0a5 (diff) | |
| download | godot-ad79c703008394a360eb9875196a9414e1c84585.tar.gz godot-ad79c703008394a360eb9875196a9414e1c84585.tar.zst godot-ad79c703008394a360eb9875196a9414e1c84585.zip | |
Update docs
[ci skip]
Diffstat (limited to 'doc/classes/World.xml')
| -rw-r--r-- | doc/classes/World.xml | 31 |
1 files changed, 10 insertions, 21 deletions
diff --git a/doc/classes/World.xml b/doc/classes/World.xml index 9011d3966..d5bbef268 100644 --- a/doc/classes/World.xml +++ b/doc/classes/World.xml @@ -11,35 +11,24 @@ <demos> </demos> <methods> - <method name="get_direct_space_state"> - <return type="PhysicsDirectSpaceState"> - </return> - <description> - Returns the World's physics space. - </description> - </method> - <method name="get_scenario" qualifiers="const"> - <return type="RID"> - </return> - <description> - Returns the World's visual scenario. - </description> - </method> - <method name="get_space" qualifiers="const"> - <return type="RID"> - </return> - <description> - Returns the World's sound space. - </description> - </method> </methods> <members> + <member name="direct_space_state" type="PhysicsDirectSpaceState" setter="" getter="get_direct_space_state"> + The World's physics direct space state, used for making various queries. Might be used only during [code]_physics_process[/code]. + </member> <member name="environment" type="Environment" setter="set_environment" getter="get_environment"> The World's [Environment]. </member> <member name="fallback_environment" type="Environment" setter="set_fallback_environment" getter="get_fallback_environment"> The World's fallback_environment will be used if the World's [Environment] fails or is missing. </member> + <member name="scenario" type="RID" setter="" getter="get_scenario"> + The World's visual scenario. + + </member> + <member name="space" type="RID" setter="" getter="get_space"> + The World's physics space. + </member> </members> <constants> </constants> |
