summaryrefslogtreecommitdiff
path: root/editor/editor_node.cpp
AgeCommit message (Collapse)Author
2019-04-30Merge pull request #27707 from Calinou/tweak-message-wordingRémi Verschelde
Improve wording of various messages and make casing more consistent
2019-04-26Limit the size of the Manage Editor Feature Profiles dialogHugo Locurcio
This makes it more readable on large monitors.
2019-04-25Merge pull request #28262 from KoBeWi/gotta_close_them_allRémi Verschelde
Add Close Others/Right/All for scene tabs
2019-04-25Add Close Others/Right/All for scene tabsTomasz Chabora
2019-04-23Save Layout When Scene Is Closed Via Context MenuDixiE
2019-04-21Improve wording of various messages and make casing more consistentHugo Locurcio
This also adds the number of selected projects to the confirmation dialog that appears before removing projects.
2019-04-19Added ability for multiple images to be imported as an atlasJuan Linietsky
This adds support for groups in the import system, which point to a single file. Add property hint for saving files in file field
2019-04-15Save opened scenes when necessaryTomasz Chabora
2019-04-09Style: Apply new changes from clang-format 8.0Rémi Verschelde
It seems to stay compatible with formatting done by clang-format 6.0 and 7.0, so contributors can keep using those versions for now (they will not undo those changes).
2019-04-08Changes to to feature profile editorJuan Linietsky
Changed "Disable Editor" to "Contextual Editor Enabled" Do not show contextual editors for disabled classes.
2019-04-08Add ability to edit editor feature profilesJuan Linietsky
Allows enabling/disabling parts of the editor and storing/loading profiles for that.
2019-04-07Android now (optionally) builds the template when exportingJuan Linietsky
Added new way to create add-ons Removed old way to create add-ons
2019-04-22Merge pull request #27414 from KoBeWi/drop_the_dirRémi Verschelde
Allow to drop folders onto editor
2019-04-21Merge pull request #27979 from Paulb23/remember_script_stateRémi Verschelde
Restore script editor state between sessions
2019-04-13Restore script editor state between sessionsPaulb23
2019-04-07Merge pull request #26551 from ZahFox/editor-shortcutsRémi Verschelde
New shortcuts for the editor menu items
2019-04-07Merge pull request #27151 from vorabrijesh/updatedRémi Verschelde
Changed default shortcut for opening help menu to (Shift + F1)
2019-04-07Change Help menu shortcut to Shift+F1: Fixes #3786vorabrijesh
2019-04-05Fix -Wimplicit-fallthrough warnings from GCC 8Rémi Verschelde
Adds `FALLTHROUGH` macro to specify when a fallthrough is intentional. Can be replaced by `[[fallthrough]]` if/when we switch to C++17. The warning is now enabled by default for GCC on `extra` warnings level (part of GCC's `-Wextra`). It's not enabled in Clang's `-Wextra` yet, but we could enable it manually once we switch to C++11. There's no equivalent feature in MSVC for now. Fixes #26135.
2019-04-03Merge pull request #27238 from ShyRed/cpu2dmaskRémi Verschelde
Add Emission Mask to CPUParticle2D
2019-03-26Allow to drop folders onto editorTomasz Chabora
2019-03-20Revert accidental commitsPedro J. Estébanez
This reverts commit fb37284c027b494ed3ec21124001fcb729f42cc4. This reverts commit 4db0f51b9aa76cfc7649787fe1970af606ce8dab.
2019-03-20Create live view dock [wip]Pedro J. Estébanez
2019-03-19Add Emission Mask to CPUParticle2DShyRed
Add ability to load emission masks to CPUParticle2D.
2019-03-17Fix inherited icons for script classesWill Nations
2019-03-16Merge pull request #26935 from qarmin/show_class_name_icon_in_tabsRémi Verschelde
Show in tabs custom class icons
2019-03-16Make bottom panel only try to hide editors when they're visibleMichael Alexsander Silva Dias
2019-03-11Show in tabs non default class iconsqarmin
2019-03-09Allow class_name scripts to have nested inheritanceGeorge Marques
2019-03-06Don't hide/show top editor if they did not change, fixes #26644Juan Linietsky
2019-03-06-Make tileset and meshlibrary edit in a separate inspector, fixes #26671Juan Linietsky
-Made relationship lines appear based on theme settings, not previous hack -Fix drawing of relationship lines (was broken) -Fix double initialization of theme settings
2019-03-04Remove the "Open Editor" button, it will open automatically.Juan Linietsky
2019-03-04Fix and restore text, material and mesh previewers.Juan Linietsky
2019-03-04Better warnings when resources can't be saved. Fixes #26531Juan Linietsky
2019-03-03Add support for event accumlation (off by default, on for editor), fixes #26536Juan Linietsky
2019-03-03New shortcuts for the editor menu itemswill
2019-03-03Fix grid view button icon not showing on filesystem dock.Bruno Lourenço
2019-03-01Fix misleading modified status of scenesPaul Trojahn
If a scene is instanced in another scene, any changes to the first triggers _clear_undo_history in EditorNode::set_current_scene, which increments the version in UndoRedo::clear_history. This results in a modified status. Passing false to clear_history fixes this issue. Fixes #25942
2019-02-27Save resources even if no scene is present, closes #26273Juan Linietsky
2019-02-27Merge pull request #26373 from groud/fix_layout_loadingRémi Verschelde
Fixes layout loading
2019-02-27Avoid docks to be overriden while scanning, fixes #26359Juan Linietsky
2019-02-27Fixes layout loadingGilles Roudiere
2019-02-27-Fix problem of order of import plugins, closes #26340Juan Linietsky
-Ensure resource previewer does not start until first import is done
2019-02-27Make sure restoring opened scenes happens after scanning is done.Juan Linietsky
2019-02-26If resources on disk have subresources and they are edited, also save the ↵Juan Linietsky
resource on ctrl-s
2019-02-26Merge pull request #26290 from groud/move_setting_to_layoutRémi Verschelde
Move the FileSystem dock layout properties to the per-project layout file
2019-02-25Move the FileSystem dock layout properties to the per-project layout fileGilles Roudiere
2019-02-25Fix editor crash after disabling plugin that used forward_spatial_gui_inputEric Rybicki
Fixes #26124.
2019-02-22Added a workaround to avoid crashes due to how TileSet editor works, fixes ↵Juan Linietsky
#23672 Also fixed a few uninitialized memory variables.
2019-02-21Implement a cleaner (and better) way to save imagedata from ImageTexture, ↵Juan Linietsky
fixes #18801