summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2022-04-16Unzip read success no longer breaks read loopJosh Kabo
unzReadCurrentFile(3) returns number of bytes read, so the current code only processes the file if no bytes were read (UNZ_OK is a #define equal to 0). I've altered the break to occur only on unsuccessful read, (when unzReadCurrentFile(3) returns less than zero), and added an error message for when an unsuccessful read occurs.
2022-04-13Merge pull request #60177 from reduz/animation-library-importRémi Verschelde
Import scenes as AnimationLibrary
2022-04-13Import scenes as AnimationLibraryreduz
Added the ability to import scenes as AnimationLibrary * Completes implementation of https://github.com/godotengine/godot-proposals/issues/4296 * Helps if you want to export animations to a separate file (say a GLTF) to avoid re-importing/exporting them every time the model changes. * Helps if you simply want to have animations using a dummy model, which can be shared across multiple models. Creates a secondary scene importer used only for animations. **NOTE**: A new flag for scene importer: EditorSceneFormatImporter.IMPORT_DISCARD_MESHES_AND_MATERIALS has been added, to hint importers that they should skip meshes and animations (and hence make importing faster). It is not implemented in any importer yet, this should be done in a separate PR.
2022-04-13Merge pull request #59398 from ↵Rémi Verschelde
Calinou/animation-track-editor-keyframe-draw-hover
2022-04-13Merge pull request #60030 from KoBeWi/pewportRémi Verschelde
2022-04-13Ensure gizmos are added to newly created Node3D-derivatives and silence ↵SaracenOne
error for attempting to create gizmos twice
2022-04-12Merge pull request #60081 from fire-forge/input-event-editor-fixRémi Verschelde
Redesign InputEvent editor and fix `Window.popup_centered()` rect calculation.
2022-04-12Merge pull request #60040 from ConteZero/editor_log_copyRémi Verschelde
2022-04-12Merge pull request #54740 from ↵Rémi Verschelde
LightningAA/project-manager-sort-by-most-recent-as-default
2022-04-12Merge pull request #60163 from fire-forge/texture-size-xRémi Verschelde
2022-04-12Redesign InputEvent editor pluginFireForge
- Use vertical layout and add text wrapping - Fix Window.popup_centered() rect calculation
2022-04-12Merge pull request #60057 from timothyqiu/select-framesRémi Verschelde
2022-04-12Merge pull request #60169 from bruvzg/remove_fa_closeRémi Verschelde
2022-04-12Remove or make private `FileAccess` `close()` methods.bruvzg
2022-04-12Fix OpenType property editor signal connection.bruvzg
2022-04-12Merge pull request #60166 from bruvzg/narrow_file_accessRémi Verschelde
2022-04-12Narrow FileAccess scope to prevent deadlocks.bruvzg
2022-04-12Disable Open in Inspector when there is no animationHaoyu Qiu
2022-04-11Use multiplication symbol in Texture size labelFireForge
2022-04-11Merge pull request #60020 from KoBeWi/yeet_bgRémi Verschelde
2022-04-11Merge pull request #59980 from reduz/animation-librariesRémi Verschelde
2022-04-11Merge pull request #59440 from bruvzg/fd_ref_countedRémi Verschelde
2022-04-11Merge pull request #60111 from KoBeWi/the_files_have_landedRémi Verschelde
2022-04-11Implement Animation Librariesreduz
* Instead of containing single animations, AnimationPlayer now contains libraries. * Libraries, in turn, contain the animations. This paves the way for implementing the possibility of importing scenes as animation libraries, finally allowing to import animations separate from the 3D models. Missing (will be done on separate PRs): * Make it possible to import scenes (dae/fbx/gltf) as animation libraries. * Make it possible for AnimationTree to import animation libraries on its own, so it does not rely on AnimationPlayer for everything.
2022-04-11Merge pull request #59514 from EricEzaM/input-editor-fixesRémi Verschelde
2022-04-11Make FileAccess and DirAccess classes reference counted.bruvzg
2022-04-11Localize unnamed project name in editor window titleHaoyu Qiu
2022-04-11Improvements to files_dropped signalkobewi
2022-04-09Improve Select Frames dialog of SpriteFrames editorHaoyu Qiu
2022-04-08Fix editor_log text copyConteZero
2022-04-08Fix 2D editor menu positionkobewi
2022-04-08Remove unused SplitContainer bg theme propertykobewi
2022-04-08Highlight hovered keyframes in the animation track editorHugo Locurcio
Both unselected and selected keyframes feature hover feedback. This currently only affects standard keyframes (i.e. not booleans, colors or audio tracks which use custom icons).
2022-04-08Merge pull request #59396 from Calinou/animation-track-editor-improve-drawingRémi Verschelde
Improve the animation track editor drawing
2022-04-07Merge pull request #59178 from Calinou/occluder3d-add-editor-iconsRémi Verschelde
2022-04-07Merge pull request #59962 from Ev1lbl0w/bugfix-projectManagerFileDialogRémi Verschelde
2022-04-06Restore hidden folder behavior for project managerEv1lbl0w
2022-04-06Fix missing favorite files in filesystem dockDaniel Kříž
2022-04-06Fix false warning folder already existsAleksey Smirnov
2022-04-06Fix some issues found by cppcheck.bruvzg
2022-04-05Merge pull request #59922 from V-Sekai/fix_editor_searchRémi Verschelde
Improve handling for editor documentation search with blank searches
2022-04-05Improve handling for editor search with blank searchesSaracenOne
2022-04-05Fix Project Manager hard crashes due to invalid access to Editor NodesMarios Staikopoulos
2022-04-05Merge pull request #56695 from bruvzg/mod_unicode_inputRémi Verschelde
2022-04-05[Input] Add extra `shortcut_input` input processing step to process Unicode ↵bruvzg
character input with Alt / Ctrl modifiers, after processing of shortcuts.
2022-04-05Fix lookup symbol in scripts which doesn't open a tab at first attemptYuri Roubinsky
2022-04-05Merge pull request #59891 from ConteZero/editor_log_deselectRémi Verschelde
2022-04-04Merge pull request #59888 from akien-mga/clang-tidyRémi Verschelde
2022-04-04Merge pull request #59885 from Jayman2000/autoload-inheritance-messageRémi Verschelde
2022-04-04Disable deselect on focus lost on editor_logConteZero