From b2fe81a17f8855f8856620bc1dea12a209e0f4a9 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 12 Mar 2025 07:28:23 +0100 Subject: [PATCH] Fix: small typo in Alembic Mesh Sequence Cache glob check Mistake in ea54cbe Pull Request: https://projects.blender.org/blender/blender/pulls/135287 --- source/blender/blenkernel/intern/cachefile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/cachefile.cc b/source/blender/blenkernel/intern/cachefile.cc index 13f74c7319e..59be0d22bf6 100644 --- a/source/blender/blenkernel/intern/cachefile.cc +++ b/source/blender/blenkernel/intern/cachefile.cc @@ -352,7 +352,7 @@ void BKE_cachefile_eval(Main *bmain, Depsgraph *depsgraph, CacheFile *cache_file BLI_freelistN(&cache_file->object_paths); #ifdef WITH_ALEMBIC - if (BLI_path_extension_check_glob(filepath, "*abc")) { + if (BLI_path_extension_check_glob(filepath, "*.abc")) { cache_file->type = CACHEFILE_TYPE_ALEMBIC; cache_file->handle = ABC_create_handle( bmain,