summaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.h
AgeCommit message (Collapse)Author
2016-06-28Editor properly reloads scenes if they changed on disk or were reimportedJuan Linietsky
2016-06-27Ask about selecting a main scene if one has not been selected.Juan Linietsky
2016-06-26Fix error reporting when a scene is not imported properly, closes #3968Juan Linietsky
2016-06-18Drop empty files that are not used anywhereRémi Verschelde
Part of #5272
2016-06-17-added missing .inc filesJuan Linietsky
-Made it possible to change the editor theme -Added two options to theme editor plugin to create empty template themes and editor themes -Make sure that saved themes to .tres keep the null theme fields, to make it easier to keep those when saving/loading the theme
2016-06-13-Add visible IO errors when closing a file fails due to it being locked ↵Juan Linietsky
(most likely on windows), closes #4760
2016-06-07-Heavily improved editor startup and exit performanceJuan Linietsky
2016-06-04Created a NodeDock with signals and groupsJuan Linietsky
2016-06-03Signals became a tabJuan Linietsky
added icons to contextual scene tree menu
2016-06-03Cleaned up remote menuJuan Linietsky
-Merged fileserver & deploy dumb clients option -Live Script Reloading can now happen automatically on script save -Changed Live to Mirror term to differentiate from Unity and Unreal, as what Godot does is not the same thing.
2016-06-02Merge pull request #4926 from Paulb23/fullscreen_and_distraction_free_modeRémi Verschelde
Added fullscreen and distraction free modes
2016-06-01Ability to reload scripts on running gameJuan Linietsky
2016-05-30Added fullscreen and distraction free modesPaulb23
2016-05-30-Some fixes to OSX retina scaling for window functionsJuan Linietsky
-Implemented HiDPI detection and support for Godot Editor!
2016-05-27Changed import workflowJuan Linietsky
-Rearrange favorites in fs dock with drag and drop -Removed import -> sub-scene, moved to scenetree contextual menu -Removed import -> re-import , moved and integrated to FS dock -Added ability in FS dock to re-import more than one resource simultaneously -Added ability to drag from native filesystem explorer to Godot, only works on Windows though -Removed scene reimport merge options, never worked well. Eventually merging materials should be re-added -Added ability to set custom root node type when importing scenes -Re-Import is now automatic, can be configured back to manual in editor settings -Added resource previews in property list for many resource types
2016-05-23-Improve resource previewsJuan Linietsky
-Also fixed draw_texture_rect() tile parameter
2016-05-21Merge remote-tracking branch 'origin/master'Juan Linietsky
2016-05-21First version of ProfilerJuan Linietsky
It is now possible to profile GDScript as well as some parts of Godot internals.
2016-05-21remove trailing whitespaceHubert Jarosz
2016-05-16Contextualized Scene Tree menuJuan Linietsky
-Added context menu to Scene Tree Dock -Removed Buttons -Added a filter to search for nods more easily in the dock
2016-05-11ability to drag scenes from filesystem to tree for instancingJuan Linietsky
2016-05-11-begun implementing drag & drop editor wideJuan Linietsky
-filesystem dock dnd support -property list dnd support -scene tree dnd support
2016-04-28Move export GUI debug toggle to export settings windoweska
2016-04-02Enables the possibility of editing on multiple plugins at same time on same ↵hodes
object type.
2016-03-12-Made editor support SSL certs by default (embedded them)Juan Linietsky
-Made asset sharing support https -Many fixes to HTTPRequest -Added an asset installer dialog -Visual cleanups to asset sharing tab -Fixed some issues in ScrollContainer, hope it does not break things -Asset sharing tab is not visible (hidden on purpose) for now.
2016-03-09remove trailing whitespaceHubert Jarosz
2016-02-28Adds EditorPlugin::remove_control_from_bottom_panel()Zher Huei Lee
Also renames `add_control_to_bottom_dock` to `add_control_to_bottom_panel` so that it would be clear that the removal functions are different too.
2016-02-27Completed the support for plugins! It is not possible to add plugins.Juan Linietsky
Not all APIs are provided yet, please request whathever you are missing. Some example plugins are provided in demos/plugins. Just copy them to a folder in your project named addons/ and then enable them from the project settings. Have fun!
2016-02-17Added option to restart custom sceneIgnacio Etcheverry
2016-02-17Fix _quick_run method (Play custom scene)Ignacio Etcheverry
2016-02-08-Property apply limits to V/H Splits in main editor window. Fixes #3567Juan Linietsky
2016-01-24Fix Output panel annoying focus stealIgnacio Etcheverry
2016-01-17-Massive editor dialog cleanupJuan Linietsky
-Added a bottom menu list
2016-01-15Merge pull request #2928 from akien-mga/pr-subscene-icon-in-dockRémi Verschelde
Moved subscene creation from scene menu to an icon on the scene dock
2016-01-11Allow to override the default editor layoutIgnacio Etcheverry
2016-01-08Quick open now can open multiple scenes and scriptsFranklin Sobrinho
2016-01-01Update copyright to 2016 in headersGeorge Marques
2015-12-31-Ensure .tscn and .tres always save in a deterministic way, fixes #2495Juan Linietsky
-Scene edit state is saved outside the scene now, to avoid changes .tscn files when nothing really changed -Created a VariantWriter helper to unify all variant to text writing -Moved SceneFormatText writing to VariantWriter -Moved ConfigFile to use VariantWriter and VariantParser, added compatibility mode for old .cfg files that use engine.cfg format
2015-12-21-Fix to progress dialog, speding it upJuan Linietsky
-Fix potential deadlock in stream player -Fix collada to support broken files from ColladaMaya
2015-12-14Added input actions renamingIgnacio Etcheverry
2015-12-13-scenes are properly reloaded when a dependency changes, fixes #2896Juan Linietsky
(it's clevery done so local changes to scenes are kept even if unsaved)
2015-12-08Merge pull request #2873 from neikeq/editor_layoutsJuan Linietsky
Editor layouts menu
2015-11-29-orphan resource explorer dialog + tools menuJuan Linietsky
2015-11-27Moved subscene creation from scene menu to an icon on the scene dockRémi Verschelde
Based on @Fiona's PR #2220. The previous "subscene" concept is also renamed to "new scene", as those subscene are just like regular scenes.
2015-11-25Editor layouts menuneikeq
2015-11-25Put 2D, 3D and Script editor index in enumneikeq
To avoid invalid index out of bounds mistakes.
2015-11-21Implement name filter to PropertyEditorFranklin Sobrinho
- Add search bar to Inspector tab and to Project and Editor settings dialog
2015-11-19Ask confirmation on closing a scene tabJulian Murgia - StraToN
2015-11-18-fixed tabsJuan Linietsky
2015-10-22Fix #2623Julian Murgia - StraToN