Skip to content

Commit

Permalink
Merge pull request #676 from BigRoy/chore/houdini_generic_rop_extractor
Browse files Browse the repository at this point in the history
Chore: Houdini refactor to generic ExtractROP plug-in
  • Loading branch information
moonyuet authored Jun 21, 2024
2 parents 506c997 + 24a508a commit ef495d0
Show file tree
Hide file tree
Showing 13 changed files with 158 additions and 496 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ class CollectFrames(plugin.HoudiniInstancePlugin):
# this plugin runs after CollectRopFrameRange
order = pyblish.api.CollectorOrder + 0.1
label = "Collect Frames"
families = ["vdbcache", "imagesequence", "ass",
"mantraifd", "redshiftproxy", "review",
"pointcache"]
families = ["camera", "vdbcache", "imagesequence", "ass", "mantraifd",
"redshiftproxy", "review", "pointcache", "fbx"]

def process(self, instance):

Expand Down Expand Up @@ -60,7 +59,10 @@ def process(self, instance):

# todo: `frames` currently conflicts with "explicit frames" for a
# for a custom frame list. So this should be refactored.
instance.data.update({"frames": result})
instance.data.update({
"frames": result,
"stagingDir": os.path.dirname(output)
})

@staticmethod
def create_file_list(match, start_frame, end_frame):
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit ef495d0

Please sign in to comment.