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.
This commit is contained in:
Kévin Dietrich 2021-05-18 00:59:29 +02:00
parent 38fe8d8b38
commit 8057b98572
1 changed files with 1 additions and 1 deletions

View File

@ -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);