فهرست منبع

Fix PhysicalBone gizmo not showing

The new CollisionObject gizmo used for custom shapes was used with
higher priority due to alphabetical order and was preventing physical
bones from being displayed in the editor.
PouleyKetchoupp 4 سال پیش
والد
کامیت
13258baf4c
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      editor/spatial_editor_gizmos.cpp

+ 1 - 1
editor/spatial_editor_gizmos.cpp

@@ -3056,7 +3056,7 @@ String CollisionObjectGizmoPlugin::get_name() const {
 }
 
 int CollisionObjectGizmoPlugin::get_priority() const {
-	return -1;
+	return -2;
 }
 
 void CollisionObjectGizmoPlugin::redraw(EditorSpatialGizmo *p_gizmo) {