🐛 fix render archive enable flag settings

This commit is contained in:
Ondřej Samohel 2024-01-08 12:41:22 +01:00
parent cf17ea8377
commit 9d83785024
No known key found for this signature in database
GPG key ID: 02376E18990A97C6

View file

@ -86,10 +86,11 @@ class CreateRedshiftROP(plugin.HoudiniCreator):
rs_filepath = f"{export_dir}{subset_name}/{subset_name}.$F4.rs"
parms["RS_archive_file"] = rs_filepath
instance_node.setParms(parms)
if pre_create_data.get("split_render", self.split_render):
parms["RS_archive_enable"] = 1
instance_node.setParms(parms)
# Lock some Avalon attributes
to_lock = ["family", "id"]
self.lock_parameters(instance_node, to_lock)