aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_node.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add scene button and tab scrollingIan2017-11-181-0/+3
|
* Add a print handler for the editor output panelGeorge Marques2017-11-161-0/+4
|
* Update meshes when reimporting,Daniel J. Ramirez2017-11-121-1/+1
| | | | Save scene preview even when not doing save and play.
* Some fixes and improvements.Daniel J. Ramirez2017-11-101-4/+4
| | | | | Changed FileDialogs for EditorFileDialogs in EditorNode. Updated CheckButton.
* Improve file/folder drag preview on filesystem dockMillionOstrich2017-11-031-2/+1
| | | | | | | | | Added icons for files/folders in drag preview Fixed folders getting an empty string label Don't show "1 more file(s)" label instead of the file Added "more folders" case if moving folders exclusively Merged drag_files and drag_files_and_dirs to reduce code duplication Simplified get_drag_data_fw and removed commented out code
* Fixes snapping and replaces the _draw_canvas by forward_canvas_drawGilles Roudiere2017-10-181-2/+2
|
* Ability to convert from SpatialMaterial to ShaderMaterialJuan Linietsky2017-09-221-0/+6
|
* Show button name always in main toolbarvolzhs2017-09-201-1/+0
|
* Merge pull request #11274 from Rubonnek/keep-argument-names-consistentRémi Verschelde2017-09-171-1/+1
|\ | | | | Renamed function arguments to keep them consistent between declaration and implementation
| * Renamed function arguments to keep them consistent between declaration and ↵Wilson E. Alvarez2017-09-141-1/+1
| | | | | | | | implementation
* | Apply clang-format again to recent changesRémi Verschelde2017-09-161-1/+0
| | | | | | | | | | | | Also add missing copyright headers. [ci skip]
* | Warn the user that changes to resources will be lost when editing imported ↵Juan Linietsky2017-09-141-0/+4
|/ | | | or instanced resources from scenes.
* fixed hover line for menu buttontoger52017-09-041-1/+2
|
* Fix issues regarding reload of resources in imported scenes. Closes #10017Juan Linietsky2017-08-311-0/+1
|
* Merge pull request #10771 from neikeq/pr-improve-build-callbacksJuan Linietsky2017-08-291-2/+2
|\ | | | | Improve build callbacks
| * Improve build callbacksIgnacio Etcheverry2017-08-291-2/+2
| | | | | | | | | | - Build callbacks now return bool to determine if the build was successful. If the build fails, the editor won't run the game. - Makes sure build callbacks are called after saving the scene ("Save Before Running" option).
* | EditorNode: enhance open scene error dialogPoommetee Ketson2017-08-291-1/+2
| |
* | -Moved script run to editor, removed from projectJuan Linietsky2017-08-271-1/+0
|/ | | | | -fixed to code completion -fix shader crash bug reported by tagcup
* Dead code tells no talesRémi Verschelde2017-08-271-2/+0
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Cleanup tons of obsolete commented out codeRémi Verschelde2017-08-261-55/+21
| | | | | Mostly in EditorNode, dropping some obsolete editor plugins and also a cleanup of ProjectSettings/EditorSettings.
* -Split EditorPlugin into EditorPlugin and EditorInterfaceJuan Linietsky2017-08-261-1/+8
| | | | | -Added EditorInterface to EditorScript -Added functions to save the scene to EditorInterface
* Merge pull request #10254 from marcelofg55/masterRémi Verschelde2017-08-221-0/+2
|\ | | | | Added notification const NOTIFICATION_WM_ABOUT
| * Added notification const NOTIFICATION_WM_ABOUTMarcelo Fernandez2017-08-171-0/+2
| |
* | Merge pull request #10307 from Rubonnek/update-argument-namesRémi Verschelde2017-08-161-1/+1
|\ \ | | | | | | Updated function argument names
| * | Updated function argument namesWilson E. Alvarez2017-08-121-1/+1
| |/
* / Enable command-line exportRuslan Mustakov2017-08-141-2/+2
|/ | | | | The syntax is identical to what it was in 2.1, but now you specify preset name instead of platform name.
* Fix !save_each_scene saving scenes with no filenamePoommetee Ketson2017-07-261-1/+1
| | | | | | When save_each_scene is false, only scenes that have been saved at least once are saved. But EditorNode tries to save scenes with no filename too (they're never saved), so it crashes.
* Move About dialog to editor_about.cppPoommetee Ketson2017-07-231-4/+2
|
* -Renamed GlobalConfig to ProjectSettings, makes more sense.Juan Linietsky2017-07-191-2/+2
| | | | -Added system for feature overrides, it's pretty cool :)
* EditorNode: remove obsolete comments in constructorPoommetee Ketson2017-07-181-7/+1
|
* ability to reposition scene tabs with drag & dropJakub Grzesik2017-07-101-0/+1
|
* About: add thirdparty license infoPoommetee Ketson2017-07-061-0/+5
|
* EditorNode: mark opened deleted scenes as unsavedPoommetee Ketson2017-06-301-0/+1
|
* EditorNode: enhance save/quit dialogPoommetee Ketson2017-06-271-1/+3
|
* EditorNode: enhance quit dialogPoommetee Ketson2017-06-251-0/+2
|
* EditorNode: add Save/Discard/Cancel dialogPoommetee Ketson2017-06-251-0/+2
|
* Merge pull request #9099 from kubecz3k/plugin-camera-exposeThomas Herzog2017-06-191-1/+4
|\ | | | | EditorPlugin can request user inputs from editor 3d view
| * EditorPlugin can request user inputs from editor 3d viewUnknown2017-06-121-1/+4
| |
* | Enhance scene tabsvolzhs2017-06-161-0/+6
|/ | | | | | | | - show scene thumbnail on hover - resize if has many tabs - show full scene file name with current edited scene - can be customized EditorSettings > Interface > Scene Tab - close scene with mouse middle button
* -Added .hdr format supportJuan Linietsky2017-05-281-0/+1
| | | | | | -Added default environment editor setting -Added environment created by default in new projects -Removed default light and ambient from spatial editor, to make the editor more PBR compliant
* Added an help menuNuno Donato2017-05-261-1/+8
| | | | | Also renamed the "tutorials" button in the script editor to be consistent with the help menu entry. Fixed #8921
* Join text menus on the top-left, move shortcut buttons to new locationNuno Donato2017-05-241-3/+4
|
* Removal of InputEvent as built-in Variant type..Juan Linietsky2017-05-201-4/+4
| | | | this might cause bugs I haven't found yet..
* Merge pull request #8631 from volzhs/editor-theme-customRémi Verschelde2017-05-201-0/+3
|\ | | | | New customizable editor theme
| * New customizable editor themevolzhs2017-05-091-0/+3
| |
* | Editor: Make "open 2d/3d/script editor" shortcuts configurable.Andreas Haas2017-05-181-1/+4
| | | | | | | | Also adds shortcuts for opening the AssetLib and for switching to the next/prev editor.
* | Separate fullscreen state for scene & script editorRamesh Ravone2017-04-261-0/+3
|/
* Removed the deprecated Import menu from the main editor.Nuno Donato2017-04-121-3/+0
|
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|