diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-10-02 20:01:27 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-10-02 20:09:48 +0300 |
commit | 25f439c573eefbc7cff2ea92952c9c68f1f0744a (patch) | |
tree | 3ee3dec438a97926280f7d6c6f1d3621beb55545 /doc/classes | |
parent | 1917bc3454e58fc56750b00e04aa25cb94d8d266 (diff) | |
download | redot-engine-25f439c573eefbc7cff2ea92952c9c68f1f0744a.tar.gz |
[DisplayServer] Implement has_hardware_keyboard method for Android and iOS.
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/DisplayServer.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/DisplayServer.xml b/doc/classes/DisplayServer.xml index 79064a88ba..37bf265d20 100644 --- a/doc/classes/DisplayServer.xml +++ b/doc/classes/DisplayServer.xml @@ -893,6 +893,13 @@ Returns [code]true[/code] if the specified [param feature] is supported by the current [DisplayServer], [code]false[/code] otherwise. </description> </method> + <method name="has_hardware_keyboard" qualifiers="const"> + <return type="bool" /> + <description> + Returns [code]true[/code] if hardware keyboard is connected. + [b]Note:[/b] This method is implemented on Android and iOS, on other platforms this method always returns [code]true[/code]. + </description> + </method> <method name="help_set_search_callbacks"> <return type="void" /> <param index="0" name="search_callback" type="Callable" /> |