1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Ensure that mesh instance is properly freed when freeing Polygon2D

This commit is contained in:
clayjohn
2022-11-24 17:34:25 -08:00
parent 7580565c28
commit 5c95288a6e

View File

@@ -663,5 +663,7 @@ Polygon2D::Polygon2D() {
}
Polygon2D::~Polygon2D() {
// This will free the internally-allocated mesh instance, if allocated.
RS::get_singleton()->canvas_item_attach_skeleton(get_canvas_item(), RID());
RS::get_singleton()->free(mesh);
}