summaryrefslogtreecommitdiff
path: root/editor/plugins
AgeCommit message (Collapse)Author
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-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
2017-08-20Merge pull request #10455 from groud/control_margin_fixesRémi Verschelde
Some control fixes and removed other useless lines
2017-08-20Delete current line, issue 9643Paulb23
2017-08-19Added option for mouse orbit sensitivityMarc Gilleron
2017-08-19Some control fixes and removed useless linesGilles Roudiere
2017-08-19Removed style box border for script panel. Fixes #10410toger5
2017-08-19Removes editor_hint from SceneTreeIgnacio Etcheverry
2017-08-18-Volume sliders, mute, solo and fx bypass are functional, closes #9021Juan Linietsky
-Fixed tree reselect, makes reselecting an audio bux FX work
2017-08-18Update script signals in real-time when script changes. Fixes #8980Juan Linietsky
2017-08-18Properly manage drawing of primitives when they lack an area, fixes #8930Juan Linietsky
2017-08-17Add closest_power_of_2 func and implement mix_rate/latency on OS XMarcelo Fernandez
2017-08-16Tilemap Editor: Setting to hide tile info in the menu barRémi Verschelde
Based on e513ecb7a14560d7238408a16a3b855863fd6df9.
2017-08-16Merge pull request #10300 from H4kor/anchorRémi Verschelde
Show Anchor even when Control-Node is hidden
2017-08-16Merge pull request #10307 from Rubonnek/update-argument-namesRémi Verschelde
Updated function argument names
2017-08-16Merge pull request #10326 from kubecz3k/spatial-click-improveRémi Verschelde
spatial selection if subscene geometry is far from origin
2017-08-15Merge pull request #10166 from toger5/asset_lib_style_overridesJuan Linietsky
fixed loading old theme styleboxes.
2017-08-15Changed anchor constants to enum, removed ANCHOR_CENTER, fixes #9889Juan Linietsky
2017-08-15Merge pull request #9889 from groud/control_enhancementskubecz3k
Control node enhancements
2017-08-15Converting to MeshLibrary works again, fixes #8092Juan Linietsky
2017-08-14spatial selection if subscene geometry is far from originJakub Grzesik