summaryrefslogtreecommitdiff
path: root/editor/editor_node.cpp
AgeCommit message (Collapse)Author
2021-10-15Add scene Post-Import Plugin support.reduz
* New plugin system to control the whole import workflow * Can add options and run code at every import step (general, per node, mesh, animation, material etc.) This constitutes a first version of these plugins. The ability to interact with the import preview dialog will likely be added later on.
2021-10-12Fixed editor attempting to save a blank scene with save all scenesMatthew Newall
2021-10-06Merge pull request #45699 from TokageItLab/implement-skeleton-editor-gizmoRémi Verschelde
Implement Skeleton Editor Gizmo
2021-10-07Implemented SkeletonEditorGizmoSilc Renew
Co-authored-by: Lyuma <xn.lyuma@gmail.com>
2021-10-03GLTF for game templates.K. S. Ernest (iFire) Lee
Convert GLTF Document to use ImporterMeshInstance3D. Add a GLTFDocument extension list and an extension for converting the importer mesh instance 3d to mesh instance 3d. Use GLTF module when the editor tools are disabled. Modified the render server to be less restrictive on matching blend arrays and have more logging. Misc bugs with multimesh. Always index the meshes.
2021-10-01Merge pull request #53277 from YeldhamDev/tabs_renamingRémi Verschelde
2021-09-30Rename some elements of `Tabs`Michael Alexsander
2021-09-30Use range iterators for `Map`Lightning_A
2021-09-30Merge pull request #53025 from Paulb23/textfile-uxRémi Verschelde
2021-09-30Rename Node's `filename` property to `scene_file_path` for clarityHugo Locurcio
2021-09-30Add TextFile support across the editorPaulb23
2021-09-29Merge pull request #52573 from e8newallm/Save_Scene-52078Rémi Verschelde
2021-09-23Fix arrow pointing in the wrong direction in the Dock Position popupMichael Alexsander
2021-09-23Merge pull request #51920 from ↵Rémi Verschelde
jmb462/missing-sname-macro-optimization-in-some-functions
2021-09-22Added ability to override shortcut definitions for OSX (remove preprocessor ↵Eric M
defines)
2021-09-21Merge pull request #52601 from KoBeWi/scene_renaissanceRémi Verschelde
Make restore_scenes_on_load true by default
2021-09-19Merge pull request #52474 from KoBeWi/script_remover_3000Rémi Verschelde
2021-09-15Merge pull request #52344 from TechnoPorg/import-assets-firstRémi Verschelde
2021-09-15Merge pull request #41036 from nathanfranke/default-2d-editorRémi Verschelde
Make default main screen plugin work even if 2D and 3D are disabled in editor features
2021-09-12Make restore_scenes_on_load true by defaultkobewi
2021-09-11Corrected Save Scene and Save All Scenes not working when the scene's dir no ↵Matthew Newall
longer exists
2021-09-09implement individual mesh transform for meshlibrary itemsVincent
2021-09-07Close built-in script from any scenekobewi
2021-09-02Merge pull request #33123 from Calinou/remote-inspector-capitalize-propertiesHugo Locurcio
Capitalize properties in the remote inspector
2021-09-02Load assets before enabling editor pluginsTechnoPorg
Moves the code for enabling plugins from NOTIFICATION_READY to after the first scan has been completed.
2021-09-01Merge pull request #51639 from Ev1lbl0w/gsoc21-dapFabio Alessandrelli
Implement more advanced features for DAP
2021-08-31Capitalize properties in the remote inspectorHugo Locurcio
This makes property casing consistent with the editor. If property capitalization is disabled in the Editor Settings, the remote inspector will also disable capitalization.
2021-08-31Implemented advanced features of DAPEv1lbl0w
Respect client "supportsVariableType" capability Implement "breakpointLocations" request Implement "restart" request Implement "evaluate" request Fix error messages not being shown, and improved wrong path message Removed thread option and behavior Implemented detailed inspection of complex variables Fix "const"ness of functions Added a configurable timeout for requests Implement Godot custom data request/event Implement syncing of breakpoints Added support for debugging native platforms
2021-08-31Make default main screen plugin work even if 2D and 3D are disabledNathan Franke
2021-08-27Makes FontData importable resource.bruvzg
Adds multi-channel SDF font texture generation and rendering support. Adds per-font oversampling support. Adds FontData import plugins (for dynamic fonts, BMFonts and monospaced image fonts), font texture cache pre-generation and loading. Adds BMFont binary format and outline support.
2021-08-26Merge pull request #51928 from reduz/extension-loaderJuan Linietsky
Implement Extension Loader
2021-08-23Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz
* `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
2021-08-22Merge pull request #47673 from Calinou/improve-editor-window-titleHugo Locurcio
Improve the editor window title for better usability
2021-08-20Implement Extension Loaderreduz
* Extensions are now scanned and loaded on demand. * Extensions found are cached into a file that is used to load them (which is also exported). * Editor will ask to restart when an extension requires core functionality. * Editor will attempt to load extensions always before importing or loading scenes. This ensures extensions can register the relevant types.
2021-08-20Add missing SNAME macro optimization for StringName in some functionsjmb462
2021-08-17Improve Undo/Redo menu itemsHaoyu Qiu
* Make Undo/Redo menu items disabled when clicking it does nothing. * Context menu of `TextEdit` * Context menu of `LineEdit` * Editor's Scene menu * Script editor's Edit menu and context menu (for Script and Text) * Make editor undo/redo log messages translatable. * Mark `UndoRedo`'s `has_{un,re}do()` methods as `const`. * Expose `TextEdit`'s `has_{un,re}do()` to scripts since `{un,re}do()` are already available.
2021-08-15Merge pull request #51512 from Bhu1-V/PR/cmd-fixRémi Verschelde
command palette improvements
2021-08-15command palette improvementsBhuvan Vemula
2021-08-14Fix double Next Editor Tabkobewi
2021-08-13Merge pull request #49523 from foxydevloper/improve-shortcut-namingRémi Verschelde
Improve naming of a couple shortcuts
2021-08-13Don't save project on startup in headless modekobewi
2021-08-12Fixes crash when AnimationPlayer reset on saveHaoyu Qiu
2021-08-10Use Key enum instead of plain integersAaron Franke
2021-08-10Improve naming of a couple shortcutsfox
2021-08-10Merge pull request #49417 from Bhu1-V/gsoc-cmd-pltRémi Verschelde
Command Palette For Godot
2021-08-10Organize methods in Viewport and explicitly name 3D methods with 3DAaron Franke
2021-08-09Added EditorCommandPaletteBhuvan Vemula
2021-08-07Merge pull request #47700 from Calinou/editor-mouse-wheel-change-scene-tabsRémi Verschelde
Allow using the mouse wheel to navigate scene tabs
2021-08-06Merge pull request #51214 from Calinou/update-spinner-highlight-when-continuousRémi Verschelde
Change the editor update spinner color when updating continuously
2021-08-03Change the editor update spinner color when updating continuouslyHugo Locurcio
Updating continuously should only be enabled for troubleshooting purposes, as it uses a lot of CPU/GPU power. The update spinner is now displayed in red when the Update Continuously editor setting is enabled.