diff options
author | Johan Manuel <johan.manuel@live.fr> | 2016-07-21 23:58:58 +0200 |
---|---|---|
committer | Johan Manuel <johan.manuel@live.fr> | 2016-07-21 23:58:58 +0200 |
commit | ec8c6e2c7c6689856a9a5547ece905339df994a8 (patch) | |
tree | 356a1d8929fe4af0252c1272e84fb35d7a8926b3 /core/os | |
parent | ad55c63918bee55c84c2be9aff27f348c267d93e (diff) |
Expose virtual keyboard functions to GDScript
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/os.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 284bcb30cb..5f86962048 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -209,18 +209,15 @@ bool OS::has_virtual_keyboard() const { return false; } -void OS::show_virtual_keyboard(const String& p_existing_text,const Rect2& p_screen_rect) { - +void OS::show_virtual_keyboard(const String& p_existing_text,const Rect2& p_screen_rect) { } void OS::hide_virtual_keyboard(){ - } - void OS::print_all_resources(String p_to_file) { ERR_FAIL_COND(p_to_file!="" && _OSPRF); |