summaryrefslogtreecommitdiff
path: root/editor/plugins
AgeCommit message (Collapse)Author
2017-09-01Removed ontop property, added a material rendering priority system. Fixes ↵Juan Linietsky
#9935, closes #10135
2017-09-01Fix files headerPoommetee Ketson
2017-09-01Merge pull request #10832 from Paulb23/auto_indent_settingRémi Verschelde
Added setting to toggle auto indent.
2017-08-31Updated Editor Built-In types.Daniel J. Ramirez
2017-08-31Added setting to toggle auto indentPaulb23
2017-08-31Merge pull request #10382 from toger5/dark_iconsRémi Verschelde
Light Theme
2017-08-31Merge pull request #10763 from poke1024/realtime-polygon-2d-fixRémi Verschelde
Fixes two glitches in polygon2d wip mode introduced with #10614
2017-08-30added icon updating to most ui elementstoger5
2017-08-30AutoUse Pencil on Polygon creationScayze
2017-08-30Merge pull request #10743 from djrm/pr_improved_spatial_gizmoRémi Verschelde
Better spatial gizmo.
2017-08-30Merge pull request #10750 from Rubonnek/fix-duplicate-script-changed-signalRémi Verschelde
Renamed 'script_changed' signal in the script editor plugin to 'edited_script_changed'
2017-08-29Merge pull request #10745 from neikeq/fix-docdata-and-stuffJuan Linietsky
DocData and virtual method type hints fixes
2017-08-29Fixes two glitches in polygon2d wip mode introduced with #10614poke1024
2017-08-29DocData and type hints fixesIgnacio Etcheverry
- Makes vararg methods automatically use PROPERTY_USAGE_NIL_IS_VARIANT on return types - Completely removes the ":type" suffix for method names. Virtual methods must use the MethodInfo constructors that takes Variant::Type or PropertyHint as the first parameter for the return type (with CLASS_INFO as a helper to get the PropertyInfo). Parameters must use PROPERTY_HINT_RESOURCE_TYPE and hint string. - PROPERTY_USAGE_NIL_IS_VARIANT is no longer needed for parameters, because parameters cannot be void. - Adds missing PROPERTY_USAGE_NIL_IS_VARIANT to virtual and built-in methods that return Variant.
2017-08-29Renamed 'script_changed' signal in the script editor plugin to ↵Wilson E. Alvarez
'edited_script_changed'
2017-08-29removed DISCARD built in variable, replaced by actual discard GLSL ↵Juan Linietsky
instruction, fixes #9677
2017-08-28Better spatial gizmo.Daniel J. Ramirez
Now it is posible to move spatial nodes along a plane.
2017-08-28Merge pull request #10614 from poke1024/realtime-polygon-2dRémi Verschelde
Adds realtime updates to polygon 2d editing
2017-08-28-Some fixes to code completion.Juan Linietsky
-Fix getter in code completion being displayed when it shouldn't -Clean up preview generation for editors and exposed it as editor plugin
2017-08-28Merge pull request #10667 from Zylann/freelook_inertiaRémi Verschelde
Added freelook inertia
2017-08-27-Moved script run to editor, removed from projectJuan Linietsky
-fixed to code completion -fix shader crash bug reported by tagcup
2017-08-27Dead code tells no talesRémi Verschelde
2017-08-27-Largely rewrote gridmap to simplify itJuan Linietsky
-Got editor working again -Added a current-floor marker on selection
2017-08-27Use HTTPS URL for Godot's website in the headersRémi Verschelde
2017-08-27Added freelook inertiaMarc Gilleron
2017-08-27Merge pull request #10591 from Rubonnek/possible-null-ptr-dereferenceRémi Verschelde
Added/Fixed null pointer checks
2017-08-27Merge pull request #10625 from Rubonnek/fixed-leaksRémi Verschelde
Fixed several memory leaks
2017-08-26Added/Fixed null pointer checksWilson E. Alvarez
2017-08-26Add several missing Null checks in _notificationHein-Pieter van Braam
This fixes #6118
2017-08-26Cleanup tons of obsolete commented out codeRémi Verschelde
Mostly in EditorNode, dropping some obsolete editor plugins and also a cleanup of ProjectSettings/EditorSettings.
2017-08-26-Split EditorPlugin into EditorPlugin and EditorInterfaceJuan Linietsky
-Added EditorInterface to EditorScript -Added functions to save the scene to EditorInterface
2017-08-26Changed camera interpolation to work when LMB is pressed and no modifiers ↵Juan Linietsky
are pressed
2017-08-26polygon2d realtime editingBernhard Liebl
editing nodes in the polygon2d editor now updates the polygon in realtime; the previous outline is shown, but this can be disabled via a new editor setting
2017-08-26-Massive clean up to gizmosJuan Linietsky
-Make sure handles are always visible (on top) -Fixed instanced scene selection (should work properly now) -Added interpolated camera -Customizable gizmo colors in editor settings
2017-08-25Editor: Add some more translatable strings.Andreas Haas
2017-08-25Fixed several memory leaksWilson E. Alvarez
2017-08-24Convert Object::cast_to() to the static versionHein-Pieter van Braam
Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/
2017-08-24-Code completion for enumerationsJuan Linietsky
-Disabled GDNative and GDNativeScript so build compiles again
2017-08-23Merge pull request #10573 from tagcup/gizmo_aabb_scaling_orderRémi Verschelde
Fix the order of transformations for selection bounding box in spatial editor.
2017-08-22Fix the order of transformations for selection bounding box in spatial editor.Ferenc Arn
This was broken in #7438 where the ordering of scaling in Basis::scale() was fixed, but this line of code (which relied on the incorrect behavior) wasn't updated correctly. Fixes #9894.
2017-08-22Add ability to undo auto-indentPedro J. Estébanez
Closes #10420.
2017-08-22Merge pull request #10538 from groud/fix_useless_separatorRémi Verschelde
Fix unneeded separator in Script Editor's Debug menu
2017-08-22Fix uneeded separatorGilles Roudiere
2017-08-22Merge pull request #10507 from toger5/override_code_them_bgRémi Verschelde
added setting to override the theme background with editor theme color
2017-08-22Add null check to ScriptEditor get_current_tab_control() callHein-Pieter van Braam
This fixes #10517
2017-08-21added setting to override the theme background with editor theme colortoger5
2017-08-21Removed unnecessary assignmentsWilson E. Alvarez
2017-08-20Merge pull request #10319 from neikeq/pr-engine-editor-hintJuan Linietsky
Adds Engine::is_editor_hint() method
2017-08-20Merge pull request #10476 from Paulb23/delete_current_line_issue_9643Rémi Verschelde
Delete current line, issue 9643
2017-08-20Merge pull request #10460 from Zylann/orbit_sensitivityRémi Verschelde
Added option for mouse orbit sensitivity