Age | Commit message (Collapse) | Author |
|
Removed unneeded sort from SpriteFramesEditor plugin
|
|
|
|
Since create_outline can only make outline for PRIMITIVE_TRIANGLES,
when QuadMesh (which is PRIMITIVE_TRIANGLE_FAN) is used to create
outline, will leave `arrays` empty, and crash when it is being indexed
for "indices" subarray.
This PR shows error when there's only one surface and it is not
TRIANGLES. Also prevent the crash if it has more than one surface
and none of them are TRIANGLES (and any other cases that could leave
`arrays` empty) by checking the size of `arrays` == 8 before indexing
it, since the method seems to expect `arrays` to be of that size.
|
|
Simplify CanvasItemEditor anchor drag logic
|
|
|
|
|
|
This PR fixes the code to avoid saving default environment every time
the project is run whitin the editor.
Should fix #17727. Sorry for the troubles!
|
|
Overhaul the display scaling editor settings
|
|
This adds more scaling options, in addition to a custom scaling option
which allows any scale between 0.75 and 3.0 to be used.
|
|
Allow Attach and Clear Script on multiple nodes
|
|
Fix non-valid characters for `input_action`
|
|
Fix pressing `F3` do both changing to script editor AND find next text
|
|
add option to invert y-axis
|
|
Allow users to add items to Tool menu
|
|
Fixes #16923. I'm not a fan of the special case for scripts in editor_node.cpp, but in any case,
I made it so it wouldn't make the external editor to re-open just because we switched scenes.
|
|
Fix saving unmodified scenes and resources
|
|
|
|
A couple of fixes for glTF importing
|
|
|
|
Aside from the colors themselves, the rejection was adding somes issues later in the mesh import process.
|
|
When `_save_all_scenes` or `save_resource_in_path` was called, they
always saved all the scenes and the resource no matter if they were
modified or not. For example, when `saving before run` option was
checked, it always overwrote the current scene and the default
environment simply by opening and runing the project.
This PR adds checks for unsaved scenes (using the same `unsave` check
others method used) and modified resources (comparing last modified
time and last import time).
Fix #6025.
|
|
|
|
Add a new function to check action names, `_validate_action_name`, in
the spirit of `_valprop`. Offending characters include non-printable
ascii, and `\/=:"`. Also set only one text for the UI message.
|
|
|
|
As `KEY_F3` was used both for changing to script editor window and, in
the script editor, for finding the next result in the last search, and
the key event is **not** consumed, the resulting behaviour was similar
to press `F3` twice, first to change to script editor and second to
find the next result of a previous search.
This PR sets the `key_pressed` status of `InputEvent` to `false` if
this event is responsible of an editor change, simulating the
consumption of the event.
Fix #17334
|
|
Mono: Avoid invalid class names.
|
|
Disallow reserved keywords as class names and prefix base class with the Godot
namespace if it's the same as the class name.
Fixes #12483
|
|
Added error checks for fscache saving
|
|
|
|
TileMap: add fix_invalid_tiles
|
|
Add icon to TileMapEditor popupmenu
|
|
Update icons when theme changed
|
|
Add an hinting mode setting to DynamicFonts
|
|
More threading in AssetLib
|
|
Fix round preview getting square on "run scene" (issue 16734)
|
|
Make md5's not be in the same file as the import settings
|
|
ScriptEditor: Use EditorSettings instead of hardcoded values in constructor.
|
|
TileSet&TextureRegion: fix error when getting nonexistent tile
|
|
Add "Show Origin" and "Show Viewport" options to 2D Editor Viewport
|
|
EditorAudioBus: expand effects list
|
|
TileSetEditorPlgn: use EditorHandle icon as handle
|
|
Improved error checking at EditorExportPlatformPC::export_project
|
|
AnimationPlayer: fix popups close on double click
|
|
Fix overwriting all common properties when using `Change Type` tool
|
|
AnimationPlayer: fix scrubbing after play backwards
|
|
Properly closing all files in Python build code
|
|
Fixes overlapping text labels in animation editor timeline
|
|
Fix wrong pan direction in animation player ui
|
|
Fix broken hover/select coloring of keys in animation editor
|
|
Update preview on filesystem change
|