| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
(cherry picked from commit 287b7543a0861a74e1b1f8b8d88102f5d9e13586)
|
|\ |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
[4.3] Fix android logger Godot references to Redot
|
| | | |
|
|/ / |
|
| | |
|
| |
| |
| |
| | |
Co-authored-by: Spartan322 <Megacake1234@gmail.com>
|
| |
| |
| |
| | |
(cherry picked from commit 961394a988c7567612b133092212cbacf4dd98b2)
|
| |
| |
| |
| | |
(cherry picked from commit 90c35f3978fa03a7f8d90f55889a4004228faf5a)
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
(cherry picked from commit 09fae16ef69b9b380e119431f224dd8ebc7dce99)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
(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)
|
|
|
|
|
|
| |
options not saved.
(cherry picked from commit ea252675aaea6fca22a479b0e412de15401ddef2)
|
|
|
|
| |
(cherry picked from commit 66832e9968e4711f0755d767daa4aec948e04e06)
|
|
|
|
| |
(cherry picked from commit e064efccbc0c48576bc23087ba8fd0773d13714d)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes #81758
DisplayServerWeb::process_joypads handles buttons 6 and 7 of the
HTML5 Standard Gamepad as a special case by doing:
`input->joy_axis(idx, (JoyAxis)b, s_btns[b]);`
This doesn't work because there is no JoyAxis 6 or 7 in the enum
To fix this we use JoyAxis::TRIGGER_LEFT and TRIGGER_RIGHT for button 6
and 7
However since we are now lying to input->joy_axis we also need to lie in
the mappings for the standard gamepad in godotcontrollersdb.txt,
otherwise input->joy_axis will try to find a mapping to axis 4(LT) and
axis 5(RT) that's not defined.
Therefore we set lefttrigger to +a4 and righttrigger to +a5 in the
mapping, to match what we are actually sending.
A cleaner, and more involved fix to this would be modifying
input->joy_button so that it can handle analog buttons and map them to
axes preserving their value instead of converting to boolean
(cherry picked from commit 9dd372f3164f3daf01c02d1f4ba304ffde47f394)
|
|
|
|
| |
(cherry picked from commit 2c991a727b1ff94fa5adca3a5a196ffa1162f98d)
|
|
|
|
| |
(cherry picked from commit 319bfa9965daae7d9e9ba5f6553afa701aad8f46)
|
|
|
|
| |
(cherry picked from commit 760099ca6fcebd92b6c6c9bd09ba3bbb643666be)
|
|
|
|
| |
(cherry picked from commit 0a57dd4682985d1be4b831c100c03121233535a7)
|
|
|
|
| |
(cherry picked from commit e8bd385f534cf02696100d90a2c4ed636353cddc)
|
|
|
|
| |
(cherry picked from commit 9a2977fef170115f600fc4e36734ae7af00cbe77)
|
|
|
|
|
|
|
|
|
| |
-avoid use of transitive wayland include
-resolves https://github.com/godotengine/godot/issues/95830
Signed-off-by: Joel Winarske <joel.winarske@gmail.com>
(cherry picked from commit 6ce71f0fb0a091cffb6adb4af8ab3f716ad8930b)
|
|
|
|
| |
(cherry picked from commit aaafd163b29180090161c0169c70ab2772dfdcd7)
|
|
|
|
| |
(cherry picked from commit 0987a9dc0690c272534d2e550296b233a7e53eb3)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
`GDExtension::open_library` has a check in it to see if the library was loaded
from a temp file, and if it was to restore the original name as that is the one
we actually care about. This check is breaking extension reloading on Mac when
the library path is to a framework folder, as the file inside the framework
will not generally be the same name as the folder.
This check also shouldn't be necessary even on Windows, which is the only
platform that uses `generate_temp_files`, since disposal of the created temp
file is handled within `OS_Windows::open_dynamic_library`, and
`GDExtension::open_library` (which is the only function to call
`open_dynamic_library` with a `p_data` argument) only cares about the original
library file path and has to do extra work to remove the name of the temp file.
Instead, I have removed that check and set `OS_Windows::open_dynamic_library`
to return the name of the original file and not the name of the copy.
This fixes GDExtension reloading on macOS. I do not have a Windows machine
available to test that it still works properly on Windows, so someone should
check that before merging this.
(cherry picked from commit f44d6a235f198e3f8c5189161840315f43cfdd2e)
|
|
|
|
|
|
| |
instead of milliseconds
(cherry picked from commit cde873b4064360da01a9ffd92956e7d89e2c3eae)
|
|
|
|
| |
(cherry picked from commit bcd776e44174677f1995a49b697f9651f1f692ec)
|
| |
|
|\
| |
| |
| | |
[macOS] Fix wrong object type in joypad queue.
|
| | |
|
|\ \
| |/
|/|
| | |
Wayland: Avoid recreating input objects on capability change
|
| |
| |
| |
| |
| |
| | |
Before, multiple capability events would instantiate the same object
over and over as long as its bit was set. This caused issues with
hotplug and device suspension.
|
|\ \
| |/
|/| |
[iOS] Fix dylib GDExtension convertion.
|
| | |
|
|/ |
|
|
|
|
| |
executable names.
|
|\
| |
| |
| | |
[macOS] Attempt to terminate process normally before using `forceTerminate`.
|
| | |
|
|\ \
| | |
| | |
| | | |
[macOS] Fix `generate_bundle` build flag for .NET builds.
|
| |/ |
|
|\ \
| | |
| | |
| | | |
[Windows] Reject `WM_POINTER(UP/DOWN)` messages for non pen pointer type.
|
| |/ |
|