Age | Commit message (Collapse) | Author |
|
Fixes rectangle painting weird behavior when dragging outside the atlas area
|
|
Make keyboard shortcuts in tile data editors consistent with tilemap editor.
|
|
|
|
Fix a bug with collision shapes painting.
|
|
Fix scaling issue in `draw_line` and similar methods
|
|
Add `Key::CTRL_OR_CMD` and use it to fix shortcut for tilemap painting tools on macOS
|
|
|
|
Save history when goto script line in the text editor
|
|
Add EditorUndoRedoManager singleton
|
|
Sauermann/fix-cursorshape-tilesetatlassourceeditor
Use get_cursor_shape for identifying the cursor shape in TileSetAtlasSourceEditor
|
|
prevented the use of the functionality on mac
on Mac CTRL + Left click = Right click therefore when a functionality needs CTRL + Left click it is not possible on mac. It then forcibly needs to be CMD on mac
|
|
|
|
|
|
|
|
|
|
|
|
Keep terrain choice when changing layer in tilemap editor
|
|
Fixes TileSet atlas merging not working correctly
|
|
Fix contextual visibility of tileset and tilemap editors (again)
|
|
|
|
|
|
Fix the Frame Selection (Shift + F) functionality in the 2D editor
|
|
Add expand modes to TextureRect
|
|
|
|
|
|
Split pause() from AnimationPlayer's stop()
|
|
|
|
|
|
Ensure that the cached layout mode is in sync
|
|
Change set_drag_forwarding() to use callables.
|
|
|
|
* This solution is much cleaner than the one in 3.x thanks to the use of callables.
* Works without issues in any language (no need to worry about camel or snake case).
* Editor code uses a compatibility function (too much work to redo).
Fixes #59899
|
|
|
|
* Remove unused `EditorPropertyMember` and related hints, previouly used by
VisualScript. Such logic should be implemented in the VS module itself.
* As the above broke compatibility with the VS module, clean up the other
hacks that were still in core in support of VisualScript.
* `PROPERTY_USAGE_INTERNATIONALIZED` was only used in Object's
`get_translatable_strings()`, which is a legacy function not used anywhere.
So both are removed.
* Reordered some usage flags after the above removal to minimize the diff.
* General clean up.
Fixes #30203.
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|
Fix error when dropping script into script editor
|
|
Use BitField<> in core type masks
|
|
* All core types masks are now correctly marked as bitfields.
* The enum hacks in MouseButtonMask and many other types are gone. This ensures that binders to other languages non C++ can actually implement type safe bitmasks.
* Most bitmask operations replaced by functions in BitField<>
* Key is still a problem because its enum and mask at the same time. While it kind of works in C++, this most likely can't be implemented safely in other languages and will have to be changed at some point. Mostly left as-is.
* Documentation and API dump updated to reflect bitfields in core types.
|
|
This makes text within disabled branches easier to distinguish from comments
when using a non-default editor syntax theme.
(The default editor syntax theme uses the same color as the text with 50%
opacity for comments, which means it looks the exact same.)
|
|
Fix "2D Polygon indices are barely visible on bright background" (#38009)
|
|
Co-authored-by: Ethan <epruhl102@gmail.com>
|
|
Closes https://github.com/godotengine/godot/issues/70634
|
|
|
|
|
|
`TileAtlasView` Update zoom and panning before emitting signal
|
|
|
|
|
|
Remove side effect of the `handles` method
|
|
`AnimatedSprite{2D,3D}` improvements
|
|
As many open source projects have started doing it, we're removing the
current year from the copyright notice, so that we don't need to bump
it every year.
It seems like only the first year of publication is technically
relevant for copyright notices, and even that seems to be something
that many companies stopped listing altogether (in a version controlled
codebase, the commits are a much better source of date of publication
than a hardcoded copyright statement).
We also now list Godot Engine contributors first as we're collectively
the current maintainers of the project, and we clarify that the
"exclusive" copyright of the co-founders covers the timespan before
opensourcing (their further contributions are included as part of Godot
Engine contributors).
Also fixed "cf." Frenchism - it's meant as "refer to / see".
|
|
* Add support for individual frame duration to `SpriteFrames`.
* Various minor improvements.
|