diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-04 21:52:01 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-04 21:52:01 -0600 |
commit | 2b49543478ff1f71dd67295a9976f35ed7a4bca2 (patch) | |
tree | 51886f366b3e964fb3d52d80f0931aef651f467e /platform/android/java/lib | |
parent | 0a2a259ad53a298ca12e7dadb5546a8eae4ea534 (diff) | |
parent | b9a2f108fc055de6a093fcec89624de0583da9cd (diff) | |
download | redot-engine-2b49543478ff1f71dd67295a9976f35ed7a4bca2.tar.gz |
Merge pull request #98709 from darksylinc/matias-upsidedown-splash
Fix splash screen upside down on Android
Diffstat (limited to 'platform/android/java/lib')
-rw-r--r-- | platform/android/java/lib/src/org/godotengine/godot/GodotIO.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/platform/android/java/lib/src/org/godotengine/godot/GodotIO.java b/platform/android/java/lib/src/org/godotengine/godot/GodotIO.java index 5543745444..79751dd58f 100644 --- a/platform/android/java/lib/src/org/godotengine/godot/GodotIO.java +++ b/platform/android/java/lib/src/org/godotengine/godot/GodotIO.java @@ -296,28 +296,6 @@ public class GodotIO { } } - /** - This function is used by DisplayServer::screen_get_internal_current_rotation (C++) - and is used to implement a performance optimization in devices that do not offer - a HW rotator. - @return - Rotation in degrees, in multiples of 90° - */ - public int getInternalCurrentScreenRotation() { - int rotation = activity.getWindowManager().getDefaultDisplay().getRotation(); - - switch (rotation) { - case Surface.ROTATION_90: - return 90; - case Surface.ROTATION_180: - return 180; - case Surface.ROTATION_270: - return 270; - default: - return 0; - } - } - public void setEdit(GodotEditText _edit) { edit = _edit; } |