Simulation Nodes: bake simulation states to disk #106937

Merged
Jacques Lucke merged 116 commits from JacquesLucke/blender:sim-bake into geometry-nodes-simulation 2023-04-22 14:48:56 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 57dc52bd42 - Show all commits

View File

@ -477,7 +477,7 @@ static Mesh *try_load_mesh(const DictionaryValue &io_geometry,
return nullptr;
}
Mesh *mesh = BKE_mesh_new_nomain(num_verts, num_edges, num_corners, num_polys);
Mesh *mesh = BKE_mesh_new_nomain(num_verts, num_edges, num_polys, num_corners);
auto cancel = [&]() {
BKE_id_free(nullptr, mesh);