瀏覽代碼

Merge pull request #94362 from smix8/navpoly_unref_fix

Fix NavigationPolygon not updating consistently on rebakes
Rémi Verschelde 1 年之前
父節點
當前提交
c77c41df88
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      scene/resources/2d/navigation_polygon.cpp

+ 4 - 0
scene/resources/2d/navigation_polygon.cpp

@@ -193,6 +193,10 @@ void NavigationPolygon::set_data(const Vector<Vector2> &p_vertices, const Vector
 	for (int i = 0; i < p_polygons.size(); i++) {
 		polygons.write[i].indices = p_polygons[i];
 	}
+	{
+		MutexLock lock(navigation_mesh_generation);
+		navigation_mesh.unref();
+	}
 }
 
 void NavigationPolygon::get_data(Vector<Vector2> &r_vertices, Vector<Vector<int>> &r_polygons) {