diff options
author | Franklin Sobrinho <franklin_gs@hotmail.com> | 2016-07-09 13:18:16 -0300 |
---|---|---|
committer | Franklin Sobrinho <franklin_gs@hotmail.com> | 2016-07-09 13:18:16 -0300 |
commit | 7cad11e1083c8ceb07c415ccb36eb4596b66384f (patch) | |
tree | aeb7c6cfcd7265345be1fb2c1b20d10b75edca00 | |
parent | 0e119a91640acbc7643ff1dd1049bf12ca302d21 (diff) |
Fix CollisionPolygon gizmo showing error icons instead of the 3d handles
-rw-r--r-- | tools/editor/plugins/collision_polygon_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/collision_polygon_editor_plugin.cpp b/tools/editor/plugins/collision_polygon_editor_plugin.cpp index 55e38cebcc..0b06b3ba21 100644 --- a/tools/editor/plugins/collision_polygon_editor_plugin.cpp +++ b/tools/editor/plugins/collision_polygon_editor_plugin.cpp @@ -584,7 +584,7 @@ CollisionPolygonEditor::CollisionPolygonEditor(EditorNode *p_editor) { handle_material->set_parameter(FixedMaterial::PARAM_DIFFUSE,Color(1,1,1)); handle_material->set_fixed_flag(FixedMaterial::FLAG_USE_ALPHA, true); handle_material->set_fixed_flag(FixedMaterial::FLAG_USE_COLOR_ARRAY, false); - Ref<Texture> handle= SpatialEditor::get_singleton()->get_icon("Editor3DHandle","EditorIcons"); + Ref<Texture> handle=editor->get_gui_base()->get_icon("Editor3DHandle","EditorIcons"); handle_material->set_point_size(handle->get_width()); handle_material->set_texture(FixedMaterial::PARAM_DIFFUSE,handle); |