diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-18 15:38:14 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-18 15:38:14 +0200 |
commit | 1e81a946cc8e7c913c1267a4489f8b0f3fffd5b1 (patch) | |
tree | 258645a8837132523ccf720d4b757252e51fc8dc /doc | |
parent | d12030e6d7bb73cc182482ad120e2f33ddd69b7c (diff) | |
parent | 7a5a8597eb81b20b14d3ab1f8b2d6dace49a2603 (diff) | |
download | redot-engine-1e81a946cc8e7c913c1267a4489f8b0f3fffd5b1.tar.gz |
Merge pull request #94412 from dsnopek/xr-always-render
Always render when XR is enabled, even if no OS windows can draw
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/DisplayServer.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/classes/DisplayServer.xml b/doc/classes/DisplayServer.xml index 62556ed38f..0bed5288bd 100644 --- a/doc/classes/DisplayServer.xml +++ b/doc/classes/DisplayServer.xml @@ -880,6 +880,12 @@ Registers callables to emit when the menu is respectively about to show or closed. Callback methods should have zero arguments. </description> </method> + <method name="has_additional_outputs" qualifiers="const"> + <return type="bool" /> + <description> + Returns [code]true[/code] if any additional outputs have been registered via [method register_additional_output]. + </description> + </method> <method name="has_feature" qualifiers="const"> <return type="bool" /> <param index="0" name="feature" type="int" enum="DisplayServer.Feature" /> @@ -1023,6 +1029,14 @@ Perform window manager processing, including input flushing. See also [method force_process_and_drop_events], [method Input.flush_buffered_events] and [member Input.use_accumulated_input]. </description> </method> + <method name="register_additional_output"> + <return type="void" /> + <param index="0" name="object" type="Object" /> + <description> + Registers an [Object] which represents an additional output that will be rendered too, beyond normal windows. The [Object] is only used as an identifier, which can be later passed to [method unregister_additional_output]. + This can be used to prevent Godot from skipping rendering when no normal windows are visible. + </description> + </method> <method name="screen_get_dpi" qualifiers="const"> <return type="int" /> <param index="0" name="screen" type="int" default="-1" /> @@ -1353,6 +1367,13 @@ [b]Note:[/b] [member ProjectSettings.audio/general/text_to_speech] should be [code]true[/code] to use text-to-speech. </description> </method> + <method name="unregister_additional_output"> + <return type="void" /> + <param index="0" name="object" type="Object" /> + <description> + Unregisters an [Object] representing an additional output, that was registered via [method register_additional_output]. + </description> + </method> <method name="virtual_keyboard_get_height" qualifiers="const"> <return type="int" /> <description> |