diff options
author | Bernhard Liebl <Bernhard.Liebl@gmx.org> | 2017-08-26 11:57:54 +0200 |
---|---|---|
committer | Bernhard Liebl <Bernhard.Liebl@gmx.org> | 2017-08-26 11:57:54 +0200 |
commit | 1ea2b9be7205c6c070e2e93d14efd8b5023c2d61 (patch) | |
tree | d472d171d5dbeb9f250644a21540ad042f931206 /editor/editor_settings.cpp | |
parent | 3ea0943f645e5fda0b1bb68415e9c92ed4cf97dd (diff) |
polygon2d realtime editing
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
Diffstat (limited to 'editor/editor_settings.cpp')
-rw-r--r-- | editor/editor_settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 358d575764..ebaae7eb8e 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -686,6 +686,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { set("editors/2d/pan_speed", 20); set("editors/poly_editor/point_grab_radius", 8); + set("editors/poly_editor/show_previous_outline", true); set("run/window_placement/rect", 1); hints["run/window_placement/rect"] = PropertyInfo(Variant::INT, "run/window_placement/rect", PROPERTY_HINT_ENUM, "Top Left,Centered,Custom Position,Force Maximized,Force Fullscreen"); |