godot/doc/classes/SceneTree.xml

422 lines
16 KiB
XML
Raw Normal View History

2018-01-12 09:03:11 +01:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name="SceneTree" inherits="MainLoop" category="Core" version="3.2">
<brief_description>
2018-04-08 22:38:45 +02:00
SceneTree manages a hierarchy of nodes.
</brief_description>
<description>
As one of the most important classes, the [SceneTree] manages the hierarchy of nodes in a scene as well as scenes themselves. Nodes can be added, retrieved and removed. The whole scene tree (and thus the current scene) can be paused. Scenes can be loaded, switched and reloaded. You can also use the SceneTree to organize your nodes into groups: every node can be assigned as many groups as you want to create, e.g. a "enemy" group. You can then iterate these groups or even call methods and set properties on all the group's members at once.
</description>
<tutorials>
<link>https://docs.godotengine.org/en/latest/getting_started/step_by_step/scene_tree.html</link>
<link>https://docs.godotengine.org/en/latest/tutorials/viewports/multiple_resolutions.html</link>
</tutorials>
<methods>
<method name="call_group" qualifiers="vararg">
<return type="Variant">
</return>
<argument index="0" name="group" type="String">
</argument>
<argument index="1" name="method" type="String">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Calls [code]method[/code] on each member of the given group.
</description>
</method>
<method name="call_group_flags" qualifiers="vararg">
<return type="Variant">
</return>
<argument index="0" name="flags" type="int">
</argument>
<argument index="1" name="group" type="String">
</argument>
<argument index="2" name="method" type="String">
</argument>
<description>
Calls [code]method[/code] on each member of the given group, respecting the given [enum GroupCallFlags].
</description>
</method>
<method name="change_scene">
<return type="int" enum="Error">
</return>
<argument index="0" name="path" type="String">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Changes to the scene at the given [code]path[/code].
</description>
</method>
<method name="change_scene_to">
<return type="int" enum="Error">
</return>
<argument index="0" name="packed_scene" type="PackedScene">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Changes to the given [PackedScene].
</description>
</method>
<method name="create_timer">
<return type="SceneTreeTimer">
</return>
<argument index="0" name="time_sec" type="float">
</argument>
<argument index="1" name="pause_mode_process" type="bool" default="true">
</argument>
<description>
2019-04-17 13:42:56 +02:00
Returns a [SceneTreeTimer] which will [signal SceneTreeTimer.timeout] after the given time in seconds elapsed in this SceneTree. If [code]pause_mode_process[/code] is set to [code]false[/code], pausing the SceneTree will also pause the timer.
2019-02-24 03:56:10 +01:00
Commonly used to create a one-shot delay timer as in the following example:
[codeblock]
func some_function():
print("start")
yield(get_tree().create_timer(1.0), "timeout")
print("end")
[/codeblock]
</description>
</method>
<method name="get_frame" qualifiers="const">
<return type="int">
</return>
<description>
Returns the current frame, i.e. number of frames since the application started.
</description>
</method>
<method name="get_network_connected_peers" qualifiers="const">
<return type="PoolIntArray">
</return>
<description>
2018-04-08 22:38:45 +02:00
Returns the peer IDs of all connected peers of this SceneTree's [member network_peer].
</description>
</method>
<method name="get_network_unique_id" qualifiers="const">
<return type="int">
</return>
<description>
2018-04-08 22:38:45 +02:00
Returns the unique peer ID of this SceneTree's [member network_peer].
</description>
</method>
<method name="get_node_count" qualifiers="const">
<return type="int">
</return>
<description>
2018-04-08 22:38:45 +02:00
Returns the number of nodes in this SceneTree.
</description>
</method>
<method name="get_nodes_in_group">
<return type="Array">
</return>
<argument index="0" name="group" type="String">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Returns all nodes assigned to the given group.
</description>
</method>
<method name="get_rpc_sender_id" qualifiers="const">
<return type="int">
</return>
<description>
2018-04-08 22:38:45 +02:00
Returns the sender's peer ID for the most recently received RPC call.
</description>
</method>
<method name="has_group" qualifiers="const">
<return type="bool">
</return>
<argument index="0" name="name" type="String">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Returns [code]true[/code] if the given group exists.
</description>
</method>
<method name="has_network_peer" qualifiers="const">
<return type="bool">
</return>
<description>
2018-04-08 22:38:45 +02:00
Returns [code]true[/code] if there is a [member network_peer] set.
</description>
</method>
<method name="is_input_handled">
<return type="bool">
</return>
<description>
2018-04-08 22:38:45 +02:00
Returns [code]true[/code] if the most recent InputEvent was marked as handled with [method set_input_as_handled].
</description>
</method>
<method name="is_network_server" qualifiers="const">
<return type="bool">
</return>
<description>
2018-04-08 22:38:45 +02:00
Returns [code]true[/code] if this SceneTree's [member network_peer] is in server mode (listening for connections).
</description>
</method>
<method name="notify_group">
<return type="void">
</return>
<argument index="0" name="group" type="String">
</argument>
<argument index="1" name="notification" type="int">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Sends the given notification to all members of the [code]group[/code].
</description>
</method>
<method name="notify_group_flags">
<return type="void">
</return>
<argument index="0" name="call_flags" type="int">
</argument>
<argument index="1" name="group" type="String">
</argument>
<argument index="2" name="notification" type="int">
</argument>
<description>
Sends the given notification to all members of the [code]group[/code], respecting the given [enum GroupCallFlags].
</description>
</method>
<method name="queue_delete">
<return type="void">
</return>
<argument index="0" name="obj" type="Object">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Queues the given object for deletion, delaying the call to [method Object.free] to after the current frame.
</description>
</method>
<method name="quit">
<return type="void">
</return>
<description>
2018-04-08 22:38:45 +02:00
Quits the application.
</description>
</method>
<method name="reload_current_scene">
<return type="int" enum="Error">
</return>
<description>
2018-04-08 22:38:45 +02:00
Reloads the currently active scene.
</description>
</method>
<method name="set_auto_accept_quit">
<return type="void">
</return>
<argument index="0" name="enabled" type="bool">
</argument>
<description>
If [code]true[/code], the application automatically accepts quitting.
</description>
</method>
<method name="set_group">
<return type="void">
</return>
<argument index="0" name="group" type="String">
</argument>
<argument index="1" name="property" type="String">
</argument>
<argument index="2" name="value" type="Variant">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Sets the given [code]property[/code] to [code]value[/code] on all members of the given group.
</description>
</method>
<method name="set_group_flags">
<return type="void">
</return>
<argument index="0" name="call_flags" type="int">
</argument>
<argument index="1" name="group" type="String">
</argument>
<argument index="2" name="property" type="String">
</argument>
<argument index="3" name="value" type="Variant">
</argument>
<description>
Sets the given [code]property[/code] to [code]value[/code] on all members of the given group, respecting the given [enum GroupCallFlags].
</description>
</method>
<method name="set_input_as_handled">
<return type="void">
</return>
<description>
2018-04-08 22:38:45 +02:00
Marks the most recent input event as handled.
</description>
</method>
2018-01-03 13:45:03 +01:00
<method name="set_quit_on_go_back">
<return type="void">
</return>
<argument index="0" name="enabled" type="bool">
</argument>
<description>
If [code]true[/code], the application quits automatically on going back (e.g. on Android).
2018-01-03 13:45:03 +01:00
</description>
</method>
<method name="set_screen_stretch">
<return type="void">
</return>
<argument index="0" name="mode" type="int" enum="SceneTree.StretchMode">
</argument>
<argument index="1" name="aspect" type="int" enum="SceneTree.StretchAspect">
</argument>
<argument index="2" name="minsize" type="Vector2">
</argument>
2017-10-21 12:02:08 +02:00
<argument index="3" name="shrink" type="float" default="1">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Configures screen stretching to the given [enum StretchMode], [enum StretchAspect], minimum size and [code]shrink[/code].
</description>
</method>
</methods>
2018-01-11 23:38:35 +01:00
<members>
<member name="current_scene" type="Node" setter="set_current_scene" getter="get_current_scene">
2018-04-08 22:38:45 +02:00
The current scene.
2018-01-11 23:38:35 +01:00
</member>
<member name="debug_collisions_hint" type="bool" setter="set_debug_collisions_hint" getter="is_debugging_collisions_hint">
</member>
<member name="debug_navigation_hint" type="bool" setter="set_debug_navigation_hint" getter="is_debugging_navigation_hint">
</member>
<member name="edited_scene_root" type="Node" setter="set_edited_scene_root" getter="get_edited_scene_root">
2018-04-08 22:38:45 +02:00
The root of the edited scene.
2018-01-11 23:38:35 +01:00
</member>
2018-05-08 11:33:25 +02:00
<member name="multiplayer" type="MultiplayerAPI" setter="set_multiplayer" getter="get_multiplayer">
The default [MultiplayerAPI] instance for this SceneTree.
2018-04-10 10:12:42 +02:00
</member>
<member name="multiplayer_poll" type="bool" setter="set_multiplayer_poll_enabled" getter="is_multiplayer_poll_enabled">
If [code]true[/code], (default) enable the automatic polling of the [MultiplayerAPI] for this SceneTree during [signal idle_frame].
When [code]false[/code] you need to manually call [method MultiplayerAPI.poll] for processing network packets and delivering RPCs/RSETs. This allows to run RPCs/RSETs in a different loop (e.g. physics, thread, specific time step) and for manual [Mutex] protection when accessing the [MultiplayerAPI] from threads.
</member>
2018-01-11 23:38:35 +01:00
<member name="network_peer" type="NetworkedMultiplayerPeer" setter="set_network_peer" getter="get_network_peer">
The peer object to handle the RPC system (effectively enabling networking when set). Depending on the peer itself, the SceneTree will become a network server (check with [method is_network_server]) and will set root node's network mode to master (see NETWORK_MODE_* constants in [Node]), or it will become a regular peer with root node set to puppet. All child nodes are set to inherit the network mode by default. Handling of networking-related events (connection, disconnection, new clients) is done by connecting to SceneTree's signals.
2018-01-11 23:38:35 +01:00
</member>
<member name="paused" type="bool" setter="set_pause" getter="is_paused">
If [code]true[/code], the SceneTree is paused.
Doing so will have the following behavior:
* 2D and 3D physics will be stopped.
* _process and _physics_process will not be called anymore in nodes.
* _input and _input_event will not be called anymore either.
2018-01-11 23:38:35 +01:00
</member>
<member name="refuse_new_network_connections" type="bool" setter="set_refuse_new_network_connections" getter="is_refusing_new_network_connections">
If [code]true[/code], the SceneTree's [member network_peer] refuses new incoming connections.
2018-01-11 23:38:35 +01:00
</member>
<member name="root" type="Viewport" setter="" getter="get_root">
2018-04-08 22:38:45 +02:00
The SceneTree's [Viewport].
2018-01-11 23:38:35 +01:00
</member>
<member name="use_font_oversampling" type="bool" setter="set_use_font_oversampling" getter="is_using_font_oversampling">
If [code]true[/code], font oversampling is used.
2018-01-11 23:38:35 +01:00
</member>
</members>
<signals>
<signal name="connected_to_server">
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever this SceneTree's [member network_peer] successfully connected to a server. Only emitted on clients.
</description>
</signal>
<signal name="connection_failed">
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever this SceneTree's [member network_peer] fails to establish a connection to a server. Only emitted on clients.
</description>
</signal>
<signal name="files_dropped">
<argument index="0" name="files" type="PoolStringArray">
</argument>
<argument index="1" name="screen" type="int">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever files are drag-and-dropped onto the window.
</description>
</signal>
<signal name="idle_frame">
<description>
2018-04-08 22:38:45 +02:00
Emitted immediately before [method Node._process] is called on every node in the SceneTree.
</description>
</signal>
<signal name="network_peer_connected">
<argument index="0" name="id" type="int">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever this SceneTree's [member network_peer] connects with a new peer. ID is the peer ID of the new peer. Clients get notified when other clients connect to the same server. Upon connecting to a server, a client also receives this signal for the server (with ID being 1).
</description>
</signal>
<signal name="network_peer_disconnected">
<argument index="0" name="id" type="int">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever this SceneTree's [member network_peer] disconnects from a peer. Clients get notified when other clients disconnect from the same server.
</description>
</signal>
2017-10-21 12:02:08 +02:00
<signal name="node_added">
<argument index="0" name="node" type="Node">
2017-10-21 12:02:08 +02:00
</argument>
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever a node is added to the SceneTree.
2017-10-21 12:02:08 +02:00
</description>
</signal>
<signal name="node_configuration_warning_changed">
<argument index="0" name="node" type="Node">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Emitted when a node's configuration changed. Only emitted in tool mode.
</description>
</signal>
<signal name="node_removed">
<argument index="0" name="node" type="Node">
</argument>
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever a node is removed from the SceneTree.
</description>
</signal>
<signal name="physics_frame">
<description>
2018-04-08 22:38:45 +02:00
Emitted immediately before [method Node._physics_process] is called on every node in the SceneTree.
</description>
</signal>
<signal name="screen_resized">
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever the screen resolution (fullscreen) or window size (windowed) changes.
</description>
</signal>
<signal name="server_disconnected">
<description>
2018-04-08 22:38:45 +02:00
Emitted whenever this SceneTree's [member network_peer] disconnected from server. Only emitted on clients.
</description>
</signal>
<signal name="tree_changed">
<description>
2018-04-10 10:12:42 +02:00
Emitted whenever the SceneTree hierarchy changed (children being moved or renamed, etc.).
</description>
</signal>
</signals>
<constants>
2018-01-03 13:45:03 +01:00
<constant name="GROUP_CALL_DEFAULT" value="0" enum="GroupCallFlags">
Call a group with no flags (default).
</constant>
2018-01-03 13:45:03 +01:00
<constant name="GROUP_CALL_REVERSE" value="1" enum="GroupCallFlags">
Call a group in reverse scene order.
</constant>
2018-01-03 13:45:03 +01:00
<constant name="GROUP_CALL_REALTIME" value="2" enum="GroupCallFlags">
Call a group immediately (calls are normally made on idle).
</constant>
2018-01-03 13:45:03 +01:00
<constant name="GROUP_CALL_UNIQUE" value="4" enum="GroupCallFlags">
Call a group only once even if the call is executed many times.
</constant>
2017-11-24 23:16:30 +01:00
<constant name="STRETCH_MODE_DISABLED" value="0" enum="StretchMode">
2018-08-07 05:17:55 +02:00
No stretching.
</constant>
2017-11-24 23:16:30 +01:00
<constant name="STRETCH_MODE_2D" value="1" enum="StretchMode">
2018-08-07 05:17:55 +02:00
Render stretching in higher resolution (interpolated).
</constant>
2017-11-24 23:16:30 +01:00
<constant name="STRETCH_MODE_VIEWPORT" value="2" enum="StretchMode">
2018-08-07 05:17:55 +02:00
Keep the specified display resolution. No interpolation. Content may appear pixelated.
</constant>
2017-11-24 23:16:30 +01:00
<constant name="STRETCH_ASPECT_IGNORE" value="0" enum="StretchAspect">
2018-08-07 05:17:55 +02:00
Fill the window with the content stretched to cover excessive space. Content may appear elongated.
</constant>
2017-11-24 23:16:30 +01:00
<constant name="STRETCH_ASPECT_KEEP" value="1" enum="StretchAspect">
2018-08-07 05:17:55 +02:00
Retain the same aspect ratio by padding with black bars in either axes. No expansion of content.
</constant>
2017-11-24 23:16:30 +01:00
<constant name="STRETCH_ASPECT_KEEP_WIDTH" value="2" enum="StretchAspect">
2018-08-07 05:17:55 +02:00
Expand vertically. Left/right black bars may appear if the window is too wide.
</constant>
2017-11-24 23:16:30 +01:00
<constant name="STRETCH_ASPECT_KEEP_HEIGHT" value="3" enum="StretchAspect">
2018-08-07 05:17:55 +02:00
Expand horizontally. Top/bottom black bars may appear if the window is too tall.
</constant>
2017-11-24 23:16:30 +01:00
<constant name="STRETCH_ASPECT_EXPAND" value="4" enum="StretchAspect">
2018-08-07 05:17:55 +02:00
Expand in both directions, retaining the same aspect ratio. No black bars.
</constant>
</constants>
</class>