Age | Commit message (Collapse) | Author |
|
Drag to Rearrange Editor Docks
|
|
Fixed bug #17929. Inconsistent sort in file manager.
|
|
|
|
Fixed wave file importer's broken resampling.
|
|
Added find & replace in files
|
|
|
|
The inspector will show the custom resources added via plugin
|
|
Jason0214/BugFix_UpdataFavoriteListWhenMoveOrRenameDir
Editor: update favortite_dirs after move or rename a file in filesytem_dock
|
|
Duplicate Arrays and Dictionaries when instancing scene in editor
|
|
Fix converting to tileset crashes Godot if existing file is not tileset
|
|
Allows to map an action to all devices.
|
|
Fix all categories unfold when one key binding is changed
|
|
This commit fix a bug #17929
(https://github.com/godotengine/godot/issues/17929)
in file manager. I'm just added sorting of files list
in method FileSystemDock::_update_files.
|
|
This is accomplished by setting a special value (-1) to the device variable
in the InputEvent that's being used to compare with the one received from the OS.
This special value is invalid for a regular input, so it should be safe.
Implements #17942
|
|
Enhance uri utils
|
|
Extended node rename function to also support renaming node path script instance property
|
|
Radio buttons in menus
|
|
Resloves Replace all doesnt replace all
|
|
Improve popup menus usability
|
|
Fix Collada material roughness import function
|
|
It seems that popups were intended to "grab" the mouse click that triggered them, but their intent was being lost. This commit does the necessary changes to let it happen and updates items that were trying to get advantage of it, because the semantics of `Control::grab_click_focus()` have changed a bit. Namely, it must be called **before** showing the modal.
This allows to popup a menu and activate an item in it in a single click-point-release cycle, instead of having to click once to open the menu and once more to pick an item.
This ability is extended even to context menus activated with the RMB (or any other mouse button, for that matter). The editor benefits from this in the context menu of the tree dock, which has been patched to opt-in for this feature.
This improves UX a bit by saving unnecessary clicks.
From now on, `PopupMenu` always grabs the click and also invalidates the first button release unless the mouse has moved (that's what `set_invalidate_click_until_motion()` was doing and now it's removed), so there is no longer the need of doing both things at every point a pop-up menu is shown.
|
|
For some glTF files, the order of bones in the skeleton array wasn't matching the joints array in the meshes.
Fixes #17808.
|
|
Explicitly print an error when --export fails.
|
|
Added shortcut to rename files
|
|
Previously this would not explicitly say the export failed.
Sure you might see another error somewhere,
but that's not very reliable/obvious.
|
|
#17962)
|
|
FIX: FILE_SHOW_IN_EXPLORER now correctly shows the file's directory
|
|
Add functionality to move selected tiles in tile map editor
|
|
Abstracted the syntax highlighter from text edit.
|
|
This change adds a new entry "Move Selection" to the "Tile Map"
menu in the tile map editor. It allows the user to easily move
as set of selected tiles.
|
|
Fixed some popups not shrinking their size back when losing items
|
|
Ctrl+Clicking a enum now scrolls down to it in the docs.
|
|
|
|
Made import conversion linear.
|
|
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.
|
|
Improved readability and further tweaking of function
|
|
|
|
Fix minus space.
|
|
|
|
Fixes NaN roughness in Godot when hardness in Blender is set to more than 255.
Also corrects dependency: more hardness = more roughness (it says shininess, but it actually is hardness).
|
|
Simplify CanvasItemEditor anchor drag logic
|
|
|
|
|
|
|
|
|
|
They work exactly the same as current checkbox-decorated items, but in order to preserve compatibility, separate methods are used, like `add_radio_check_item()`. The other option would have been to add a new parameter at the end of `add_check_item()` and the like, but that would have forced callers to provide the defaults manually.
`is_item_checkable()`, `is_item_checked()` and `set_item_checked()` are used regardless the item is set to look as check box or radio button.
Keeping check in the name adds an additional clue about these facts.
Closes #13055.
|
|
There was a percent-prefixed version, which was exposed, and a http-prefixed version which was not (only to GDNative).
This commit keeps the percent-prefixed versions, but with the http-prefixed implementations.
|