summaryrefslogtreecommitdiff
path: root/tools/editor
AgeCommit message (Collapse)Author
2016-10-03Merge pull request #6684 from Hinsbart/save_allRémi Verschelde
Fix "Save All" option in Script editor.
2016-10-03Merge pull request #6662 from RandomShaper/export-texture-flagsRémi Verschelde
Respect texture .flags files on export
2016-10-03Merge pull request #6640 from Hinsbart/color_pickerRémi Verschelde
Add inline ColorPicker to Script text editor.
2016-10-03Merge pull request #6592 from Hinsbart/anim_zoomRémi Verschelde
AnimationEditor: zoom using ctrl+wheel
2016-10-03Merge pull request #6575 from Geequlim/more_themesRémi Verschelde
More custom theme support for editor
2016-10-03Merge pull request #6554 from pkowal1982/propertyeditortooltipsRémi Verschelde
Show True/False tooltip in property editor for bool values
2016-10-03Merge pull request #6479 from RandomShaper/improve-debug-focusRémi Verschelde
Improve debug focus behavior
2016-10-02Fix "Save All" option in Script editor.Andreas Haas
Also removes some old code. fixes #6667
2016-09-30Respect texture .flags files on exportPedro J. Estébanez
2016-09-30Fix typo for word_wrapvolzhs
2016-09-29Add inline ColorPicker to Script text editor.Andreas Haas
Adds an option to the script editor context menu that lets you open a ColorPicker in order to easily edit `Color()` constructors. To do this, right click on the word `Color` and select `Pick Color`. A side effect of this change is that the script editor now has its own context menu instead of re-using the one from TextEdit. It's now possible to indent left/right and to toggle comments via this menu. I also felt free to make it more context-sensitive than before: Now "Cut" and "Copy" will only be shown if text has actually been selected. I also added default shortcuts for indent left/right. (alt + left/right) Closes #6232
2016-09-23AnimationEditor: zoom using ctrl+wheelAndreas Haas
closes #6585
2016-09-21Fix crash when disabling main screen pluginGeorge Marques
2016-09-20More custom theme support for editorGeequlim
2016-09-19Show True/False tooltip in property editor for bool valuesPawel Kowal
2016-09-19Merge pull request #6549 from Hinsbart/default_layoutRémi Verschelde
Make the choosable default editor layout the same as the actual default [ci skip]
2016-09-19Make the choosable default editor layout the same as the actual default one.Andreas Haas
Fixes #6266
2016-09-18Merge pull request #6534 from djrm/iconsRémi Verschelde
New distraction free mode icon
2016-09-18Merge pull request #6525 from vnen/plugin-bottom-show-hideRémi Verschelde
Expose bottom panel show/hide for plugins
2016-09-18New distraction free mode iconDaniel J. Ramirez
2016-09-17Merge pull request #6516 from vnen/plugin-main-screenRémi Verschelde
Add a function to plugin get the main screen parent
2016-09-17Merge pull request #6498 from Paulb23/current_script_highlight_fixRémi Verschelde
Fix highlight current script when script temperature is disabled
2016-09-17Merge pull request #6414 from RandomShaper/improve-shader-shadowRémi Verschelde
Expose additional light/shadow properties to canvas item shaders
2016-09-17Expose bottom panel show/hide for pluginsGeorge Marques
2016-09-16Add a function to plugin get the main screen parentGeorge Marques
- Fix a bug where the main screen button did not disappear when the plugin was deactivated.
2016-09-15Fix highlight current script when script temputure is disabledPaulb23
2016-09-14Call run callbackJuan Linietsky
2016-09-14Added API version and hashing to ObjectTypeDBJuan Linietsky
2016-09-14Improve debug focus behaviorPedro J. Estébanez
Fix focusing debugged game on Windows Add re-focusing editor on continue
2016-09-13Added a generic AStar implementation to Godot.Juan Linietsky
It's pretty fast, use it for games where Navigation does not cut it.
2016-09-13Make Godot detect if the screen is too small (<1200 pixels wide), and use ↵Juan Linietsky
single dock column like in 1.0 if that's the case.
2016-09-13-Added VeryLowDPI and MidDPI modes to Godot editor.Juan Linietsky
-Improved HiDPI detection (requires resolution of > 2000 in X axis)
2016-09-13Distraction free icon was missingJuan Linietsky
2016-09-13-Add a distraction free mode button (so users know it's there)Juan Linietsky
-Made distaction free not hide the top bar, it's more loss than gain to hide it -Fix fullscreen toggling and added a menu option for it so it's also visible in settings.
2016-09-12Added favorites and recent history to create dialogJuan Linietsky
2016-09-12Modified resource menu for node scripts so it always goes through the new ↵Juan Linietsky
script wizard.
2016-09-12Merge pull request #6465 from Paulb23/script_highlight_color_updateRémi Verschelde
Update current script color on change
2016-09-12Update current script color on changePaulb23
2016-09-12Do ctrl-click on any code identifier to go to definiton or help page.Juan Linietsky
2016-09-11Changed default assignment of shorcut for alt-left/right to history ↵Juan Linietsky
next/prev, which is more standard and useful. Indent can be done with tab and shift-tab anyway. If you don't like this, feel free to reassign them manually in the editor settings :P
2016-09-11-Added a ColorFrame control, kind of like Texture but for color.Juan Linietsky
-Added dropping nodes to text editor for them to become a path -Fixed issues with font not properly being set in code editor
2016-09-11-Cleaned up find/replace bar for replace (made selection only default if ↵Juan Linietsky
selection exists), also made buttons look like buttons -Fixed a bug related to theme propagation, may be able to solve #6443, #6302 and others. Please test.
2016-09-10fix get_selected_nodes()Juan Linietsky
2016-09-10-Added bindings to the resource filesystem for editorJuan Linietsky
-Added set_child_rect, which was unavailable for script
2016-09-10Made it possible to properly draw over the 2D canvas for 2D objects. ↵Juan Linietsky
Arranged some functions to achieve this.
2016-09-10-Added way to generate resource previews from script plugin.Juan Linietsky
-Updated documentation
2016-09-10Add API for inspecting objects from EditorPlugin, as requested in one of the ↵Juan Linietsky
comments of #6254
2016-09-10Merge pull request #5692 from kubecz3k/remoteTransformJuan Linietsky
Remote transform node (for 3d)
2016-09-10Merge pull request #5920 from 29jm/fix-warningsJuan Linietsky
Fix some more warnings
2016-09-10Merge pull request #6137 from supaiku-o/masterJuan Linietsky
Add a Close All files option to script editor