From 89ff870499d264b7f546196048c36f827e85a84d Mon Sep 17 00:00:00 2001 From: William Leeson Date: Wed, 15 Mar 2023 13:29:33 +0100 Subject: [PATCH] FIX: Disable the bounding box that replaces the Alembic object The bounding box replaced the object material with the default one. By enabling the underlying geometry the original material is restored. --- source/blender/modifiers/intern/MOD_meshsequencecache.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/modifiers/intern/MOD_meshsequencecache.cc b/source/blender/modifiers/intern/MOD_meshsequencecache.cc index 8e6a96f9945..9a0d2dd502b 100644 --- a/source/blender/modifiers/intern/MOD_meshsequencecache.cc +++ b/source/blender/modifiers/intern/MOD_meshsequencecache.cc @@ -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. */ -- 2.30.2