Browse Source

Merge pull request #5612 from TheHX/collision-polygon-plugin

Fix CollisionPolygon gizmo showing error icons instead of the 3d handles
Rémi Verschelde 9 years ago
parent
commit
d23d40cfbd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/editor/plugins/collision_polygon_editor_plugin.cpp

+ 1 - 1
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_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_ALPHA, true);
 	handle_material->set_fixed_flag(FixedMaterial::FLAG_USE_COLOR_ARRAY, false);
 	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_point_size(handle->get_width());
 	handle_material->set_texture(FixedMaterial::PARAM_DIFFUSE,handle);
 	handle_material->set_texture(FixedMaterial::PARAM_DIFFUSE,handle);