Skip to content

Commit

Permalink
Merge pull request #93 from ynput/bugfix/local-render_fix-frame-start…
Browse files Browse the repository at this point in the history
…-end-handle

Bugfix: local render remove redundant keys and add missing keys
  • Loading branch information
BigRoy committed Sep 10, 2024
2 parents 5c182a4 + aa21abb commit df6fa8d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,15 @@ def process(self, instance):
# 'label': label,
"task": instance.data["task"],
"folderPath": instance.data["folderPath"],
"frameStart": instance.data["frameStartHandle"],
"frameEnd": instance.data["frameEndHandle"],
"frameStartHandle": instance.data["frameStartHandle"],
"frameEndHandle": instance.data["frameEndHandle"],
"productType": product_type,
"family": product_type,
"productName": product_name,
"productGroup": product_group,
"families": ["render.local.hou", "review"],
"instance_node": instance.data["instance_node"],
"publish_attributes": instance.data["publish_attributes"],
"representations": [representation]
})

Expand Down

0 comments on commit df6fa8d

Please sign in to comment.