Age | Commit message (Collapse) | Author |
|
Check invalid node name
|
|
Fix MSVC check when building with mono
|
|
|
|
|
|
|
|
Fix editor detecting msbuild with a msvc 'tools only' install
|
|
|
|
Fixes locks and groups on 2d editor
|
|
Editor: update favorite dirs when dir got deleted
|
|
bzztbomb/fix/stack_underflow_when_debuggin_in_release
Fix a crash when trying to run Godot debugger on a release build.
|
|
Implement universal translation of touch to mouse (3.1)
|
|
Fix Find in Files
|
|
|
|
fix API string path
|
|
Fix enums without class name not opening docs page
|
|
Adds keywords to autocomplete predictions.
|
|
Changed Sprite Frame buttons for icons
|
|
|
|
The GDScriptLanguage::enter_function is wrapped in #ifdef DEBUG but the exit_function is not, resulting in a stack underflow error.
|
|
- FileAccess was accessed null (remains of GDScript port)
- `_current_file` wasn't going up correctly in case a scanned directory had no subdirectories
- Paths stored in `_files_to_scan` were not full paths
|
|
hide tab changed debug print
|
|
Handle missing arg pointer in Variant::get_call_error_text
|
|
Fix Coverity reports of uninitialized scalar variable
|
|
Added multi group editor dialog, issue 13997
|
|
Adds z-index properties to TileSets.
|
|
fix for segfault when using CallBasic in visual script on release build
|
|
|
|
Created a new function named get_element in GridContainer. This funct…
|
|
Prevent PulseAudio driver to lock its mutex for too long
|
|
If at the time of the _GLOBAL_DEF call a setting itself was unknown,
the function would always return the supplied default value instead of
checking for overrides. This commit changes that, lookup now always
happens which correctly takes overrides into account.
|
|
|
|
|
|
This reverts commit 00c689d625d0243577c225612aa86aa6a85274c4.
Reason: "Missing template" is just one possible explanation for
`err` being != OK here, it does not make sense to hardcode it in
the generic error message (and break translations doing so).
|
|
Fixed deleting an animation marked to autoplay in the editor affecting the creation of one with the same name
|
|
Fixing input strength and the impossibility to erase action events
|
|
Was missed in #18391.
|
|
Keep alpha when changing h, s or v Color property in GDScript
|
|
fix clang6 assignment error
|
|
Fixes 2d editor panning not working
|
|
Fix GridContainer's children visibility breaking the layout
|
|
Various coverity scan fixes, WS FreeBSD fixes
|
|
Fixes logically dead code (Coverity)
|
|
Adds keywords to the autocomplete prediction in GDScript so
they are not replaced by irrelevant predictions.
Fixes: #5972
|
|
|
|
I had a situation coming from godot-python where the caller of
Variant::get_call_error_text() passed null for `p_argptrs`. In
addition to fixing that in the caller, seems like good practice to
defend against that situation in the callee to prevent a crash.
So this patch just substitutes some semi-useful text for the source
type name and keeps going so the user's actual error gets emitted.
|
|
Now generating mouse events from touch is optional (on by default) and it's performed by `InputDefault` instead of having each OS abstraction doing it. (*)
The translation algorithm waits for a touch index to be pressed and tracks it translating its events to mouse events until it is raised, while ignoring other pointers.
Furthermore, to avoid an stuck "touch mouse", since not all platforms may report touches raised when the window is unfocused, it checks if touches are still down by the time it's focused again and if so it resets the state of the emulated mouse.
*: In the case of Windows, since it already provides touch-to-mouse translation by itself, "echo" mouse events are filtered out to have it working like the rest.
On X11 a little hack has been needed to avoid a case of a spurious mouse motion event that is generated during touch interaction.
Plus: Improve/fix tracking of current mouse position.
** Summary of changes to settings: **
- `display/window/handheld/emulate_touchscreen` becomes `input/pointing_devices/emulate_touch_from_mouse`
- New setting: `input/pointing_devices/emulate_mouse_from_touch`
|
|
Adds support for CMD+Left and CMD+Right on MacOS
|
|
Replaces CTRL with CMD in TileMapEditor for MacOS.
|
|
Fixes hard to select Node2D
|
|
|