Merge pull request #76257 from spanzeri/sdfcollision-popup-stuck
Fix editor lock on sdf collision bake on error
This commit is contained in:
commit
f6bb71fc77
1 changed files with 7 additions and 2 deletions
|
@ -469,8 +469,13 @@ Ref<Image> GPUParticlesCollisionSDF3D::bake() {
|
||||||
}
|
}
|
||||||
|
|
||||||
//compute bvh
|
//compute bvh
|
||||||
|
if (faces.size() <= 1) {
|
||||||
ERR_FAIL_COND_V_MSG(faces.size() <= 1, Ref<Image>(), "No faces detected during GPUParticlesCollisionSDF3D bake. Check whether there are visible meshes matching the bake mask within its extents.");
|
ERR_PRINT("No faces detected during GPUParticlesCollisionSDF3D bake. Check whether there are visible meshes matching the bake mask within its extents.");
|
||||||
|
if (bake_end_function) {
|
||||||
|
bake_end_function();
|
||||||
|
}
|
||||||
|
return Ref<Image>();
|
||||||
|
}
|
||||||
|
|
||||||
LocalVector<FacePos> face_pos;
|
LocalVector<FacePos> face_pos;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue