diff options
author | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2023-02-21 09:18:08 -0800 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2023-02-22 00:16:39 -0800 |
commit | 445053a62d90ee2b190e4ccca376141b2d2400e8 (patch) | |
tree | 9714175613858b99a8b1478eedd84169d1e931f8 /platform/android/java/lib/src | |
parent | 7e79aead99a53ee7cdf383add9a6a2aea4f15beb (diff) |
Enable granular control of touchscreen related settings
Diffstat (limited to 'platform/android/java/lib/src')
-rw-r--r-- | platform/android/java/lib/src/org/godotengine/godot/GodotLib.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/platform/android/java/lib/src/org/godotengine/godot/GodotLib.java b/platform/android/java/lib/src/org/godotengine/godot/GodotLib.java index 75a01dc787..d9aab950df 100644 --- a/platform/android/java/lib/src/org/godotengine/godot/GodotLib.java +++ b/platform/android/java/lib/src/org/godotengine/godot/GodotLib.java @@ -190,6 +190,13 @@ public class GodotLib { public static native String getGlobal(String p_key); /** + * Used to access Godot's editor settings. + * @param settingKey Setting key + * @return String value of the setting + */ + public static native String getEditorSetting(String settingKey); + + /** * Invoke method |p_method| on the Godot object specified by |p_id| * @param p_id Id of the Godot object to invoke * @param p_method Name of the method to invoke |