FIX: Disable the bounding box that replaces the Alembic object #105792

Closed
William Leeson wants to merge 1 commits from leesonw/blender-cluster:alembic_fix into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 2 additions and 1 deletions

View File

@ -189,10 +189,11 @@ static Mesh *modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *
}
/* Do not process data if using a render procedural, return a box instead for displaying in the
* viewport. */
* viewport.
if (BKE_cache_file_uses_render_procedural(cache_file, scene)) {
return generate_bounding_box_mesh(org_mesh);
}
*/
/* If this invocation is for the ORCO mesh, and the mesh hasn't changed topology, we
* must return the mesh as-is instead of deforming it. */