Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/io/usd/intern/usd_capi.cc')
-rw-r--r--source/blender/io/usd/intern/usd_capi.cc33
1 files changed, 17 insertions, 16 deletions
diff --git a/source/blender/io/usd/intern/usd_capi.cc b/source/blender/io/usd/intern/usd_capi.cc
index 931b08433ef..73a1a5ede14 100644
--- a/source/blender/io/usd/intern/usd_capi.cc
+++ b/source/blender/io/usd/intern/usd_capi.cc
@@ -298,22 +298,23 @@ static void import_startjob(void *user_data, short *stop, short *do_update, floa
USDPrimIterator usd_prim_iter(data->stage, import_ctx, data->bmain);
- CacheFile *cache_file = static_cast<CacheFile *>(
- BKE_cachefile_add(data->bmain, BLI_path_basename(data->filename)));
-
- /* Decrement the ID ref-count because it is going to be incremented for each
- * modifier and constraint that it will be attached to, so since currently
- * it is not used by anyone, its use count will off by one. */
- /* TODO(makowalski): rather than decrementing the use count, should
- * we just call BKE_id_free_us() on the cache_file id when cleaning up? */
- id_us_min(&cache_file->id);
-
- // cache_file->is_sequence = data->params.is_sequence;
- cache_file->scale = data->params.scale;
- STRNCPY(cache_file->filepath, data->filename);
-
- // data->archive = archive;
- // data->settings.cache_file = cache_file;
+ CacheFile *cache_file = nullptr;
+
+ if (data->params.transform_constraint) {
+ cache_file = static_cast<CacheFile *>(
+ BKE_cachefile_add(data->bmain, BLI_path_basename(data->filename)));
+
+ /* Decrement the ID ref-count because it is going to be incremented for each
+ * modifier and constraint that it will be attached to, so since currently
+ * it is not used by anyone, its use count will off by one. */
+ /* TODO(makowalski): rather than decrementing the use count, should
+ * we just call BKE_id_free_us() on the cache_file id when cleaning up? */
+ id_us_min(&cache_file->id);
+
+ cache_file->is_sequence = data->params.is_sequence;
+ cache_file->scale = data->params.scale;
+ STRNCPY(cache_file->filepath, data->filename);
+ }
// Optionally print the stage contents for debugging.
if (data->params.debug) {