feat: updated engine version to 4.4-rc1
This commit is contained in:
parent
ee00efde1f
commit
21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions
|
|
@ -31,7 +31,7 @@
|
|||
#ifndef JAVA_GODOT_IO_WRAPPER_H
|
||||
#define JAVA_GODOT_IO_WRAPPER_H
|
||||
|
||||
#include "string_android.h"
|
||||
#include "jni_utils.h"
|
||||
|
||||
#include "core/math/rect2i.h"
|
||||
#include "core/variant/typed_array.h"
|
||||
|
|
@ -48,6 +48,7 @@ private:
|
|||
jmethodID _open_URI = 0;
|
||||
jmethodID _get_cache_dir = 0;
|
||||
jmethodID _get_data_dir = 0;
|
||||
jmethodID _get_temp_dir = 0;
|
||||
jmethodID _get_display_cutouts = 0;
|
||||
jmethodID _get_display_safe_area = 0;
|
||||
jmethodID _get_locale = 0;
|
||||
|
|
@ -58,6 +59,7 @@ private:
|
|||
jmethodID _get_unique_id = 0;
|
||||
jmethodID _show_keyboard = 0;
|
||||
jmethodID _hide_keyboard = 0;
|
||||
jmethodID _has_hardware_keyboard = 0;
|
||||
jmethodID _set_screen_orientation = 0;
|
||||
jmethodID _get_screen_orientation = 0;
|
||||
jmethodID _get_system_dir = 0;
|
||||
|
|
@ -70,7 +72,8 @@ public:
|
|||
|
||||
Error open_uri(const String &p_uri);
|
||||
String get_cache_dir();
|
||||
String get_user_data_dir();
|
||||
String get_temp_dir();
|
||||
String get_user_data_dir(const String &p_user_dir);
|
||||
String get_locale();
|
||||
String get_model();
|
||||
int get_screen_dpi();
|
||||
|
|
@ -80,6 +83,7 @@ public:
|
|||
Rect2i get_display_safe_area();
|
||||
String get_unique_id();
|
||||
bool has_vk();
|
||||
bool has_hardware_keyboard();
|
||||
void show_vk(const String &p_existing, int p_type, int p_max_input_length, int p_cursor_start, int p_cursor_end);
|
||||
void hide_vk();
|
||||
int get_vk_height();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue