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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2021-05-18 01:59:29 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2021-05-18 01:59:29 +0300
commit8057b985727d4aabeb5c14143fcd9ef9088fbc00 (patch)
tree95bbfb4ddc8649e5879f72c4c8c8037bf39c470a
parent38fe8d8b38d901f51de09ee26e733a8ec7bbc000 (diff)
Alembic procedural: fix wrong property used as base for attribute
lookups We use the schema so that we can access top level attributes as well. This is already done for polygon meshes and curves, so this only modifies the behavior for subdivision objects.
-rw-r--r--intern/cycles/render/alembic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/render/alembic.cpp b/intern/cycles/render/alembic.cpp
index 5842f4c313d..420c66ad4dc 100644
--- a/intern/cycles/render/alembic.cpp
+++ b/intern/cycles/render/alembic.cpp
@@ -500,7 +500,7 @@ void AlembicObject::load_data_in_cache(CachedData &cached_data,
*/
read_attributes(proc,
cached_data,
- schema.getArbGeomParams(),
+ schema,
schema.getUVsParam(),
get_requested_attributes(),
progress);