| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
| |
Co-authored-by: Spartan322 <Megacake1234@gmail.com>
|
|
|
|
| |
(cherry picked from commit 961394a988c7567612b133092212cbacf4dd98b2)
|
|
|
|
| |
(cherry picked from commit 90c35f3978fa03a7f8d90f55889a4004228faf5a)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084)
Credits:
Co-authored-by: Skogi <skogi.b@gmail.com>
Co-authored-by: Spartan322 <Megacake1234@gmail.com>
Co-authored-by: swashberry <swashdev@pm.me>
Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: radenthefolf <radenthefolf@gmail.com>
Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com>
Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com>
Co-authored-by: decryptedchaos <nixgod@gmail.com>
Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com>
Co-authored-by: Mister Puma <MisterPuma80@gmail.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: SingleError <isaaconeoneone@gmail.com>
Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
|
| |
|
|
|
|
| |
(cherry picked from commit 42b0e91ee49a01681fd3c485f7bdba65732bb795)
|
|
|
|
| |
(cherry picked from commit e064efccbc0c48576bc23087ba8fd0773d13714d)
|
|
|
|
| |
(cherry picked from commit 2c991a727b1ff94fa5adca3a5a196ffa1162f98d)
|
|
|
|
|
|
| |
instead of milliseconds
(cherry picked from commit cde873b4064360da01a9ffd92956e7d89e2c3eae)
|
| |
|
|\
| |
| |
| | |
Fix crash that occurs on termination of the Godot engine on Android
|
| | |
|
|/
|
|
| |
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|\
| |
| |
| |
| |
| | |
ChrisBase/fix_keytool_for_android_export_not_found
Fix Android export failing with custom keystores and no JDK setup in the OS environment
|
| |
| |
| |
| | |
custom keystores have been set in the export dialog.
|
|\ \
| |/
|/|
| | |
Android: Change the way `doNotStrip` is set
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
On Android the exit logic goes through `Godot#onDestroy()` who attempts to cleanup the engine using the following code:
```
runOnRenderThread {
GodotLib.ondestroy()
forceQuit()
}
```
The issue however is that by the time we ran this code, the render thread has already been paused (but not yet destroyed), and thus `GodotLib.ondestroy()` and `forceQuit()` which are scheduled on the render thread are not executed.
To address this, we instead explicitly request the render thread to exit and block until it does. As part of it exit logic, the render thread has been updated to properly destroy and clean the native instance of the Godot engine, resolving the issue.
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | | |
m4gr3d/restart_editor_when_updating_touchscreen_settings
[Android Editor] Resolve issues with the editor touchscreen settings
|
| | |
| | |
| | |
| | |
| | |
| | | |
Long press is used to simulate right-click events for finger touch and stylus. The previous logic also caused it to trigger for mouse input, which is not needed since the user can instead use the mouse right click button.
This update disables long press as right click events for mouse input.
|
|\ \ \
| | | |
| | | |
| | | | |
Fix issue preventing enabling the remote button for Android/iOS
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
https://github.com/godotengine/godot/pull/92032 updated the logic to enable / disable the remote debug button, and in doing so added a `can_export` check.
However, no events / notifications are dispatched when the value of the `can_export` check changes, which in turn prevents the logic used to enable / disable the remote debug button from running again.
The fix consists then in removing the `can_export` check, so that the remote debug button shows as `enabled` when a preset is present and is runnable.
|
|/ /
| |
| |
| |
| |
| |
| | |
Follow up to https://github.com/godotengine/godot/pull/93933
Clean up the set of settings use to control whether Android input should be dispatched on the render thread.
Addresses comments in https://github.com/godotengine/godot/pull/93933#issuecomment-2210437977
|
| |
| |
| |
| |
| |
| | |
- Add support for dispatching input on the render thread (UI thread is the current default) when `input_buffering` and `accumulated_input` are disabled. At the expense of latency, this helps prevent 'heavy' applications / games from blocking the UI thread (the default behavior) which may cause the application to ANR.
- Remove GLSurfaceView logic causing the UI thread to wait on the GL thread during lifecycle events. The removed logic would cause the UI thread to ANR when the GL thread is blocked.
|
| | |
|
| |
| |
| |
| | |
renderer
|
| | |
|
| | |
|
|/ |
|
|\
| |
| |
| | |
Update the Android splash screen logic
|
| |
| |
| |
| | |
Due to limitations to the splash screen introduced in Android 12, the splash screen logic is updated to the same logic as used on other platforms, i.e: the splash screen is rendered by the Godot engine instead of the Android runtime.
|
| | |
|
|/ |
|
|\
| |
| |
| | |
Remove the limit on the number of the SignalInfo creation function parameters
|
| |
| |
| |
| |
| |
| | |
Update platform/android/api/jni_singleton.h
Co-authored-by: A Thousand Ships (she/her) <96648715+AThousandShips@users.noreply.github.com>
|
|\ \
| | |
| | |
| | | |
Consolidate the ProjectManager and Editor windows into a single Android Activity class
|
| | |
| | |
| | |
| | | |
Activity class.
|
|/ / |
|
|/
|
|
|
|
|
|
|
|
| |
Some of the logic in SCons depends on flags that get overridden in the
platform-specific `detect.py`, so it needs to be processed first.
For example the Android/iOS/Web platforms override the default `target`
to `template_debug`, but this was processed too late so e.g. the logic
that sets `env.editor_build` would set it to true due to the default
`target` value in the environment being `editor`.
|
|
|
|
| |
dependencies have their own
|
|\
| |
| | |
Fix invalid detection of mouse input
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Fix invalid detection of mouse input. Prioritize using the event tool type to detect the type of the event, and only use the event source as fallback.
- Ensure that pressure and tilt information is passed for touch drag events
- Consolidate logic and remove redundant methods
- Improve the logic to detect when external hardware keyboards are connected to the device
|
|\ \
| | |
| | |
| | | |
Properly set window class in Wayland
|
| | | |
|
|/ / |
|