Merge branch 'develop' into enhancement/OP-6499_nuke-split-instance-attributes-to-range-channels-order

This commit is contained in:
Jakub Ježek 2023-08-03 13:57:16 +02:00 committed by GitHub
commit 583fe866fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
60 changed files with 838 additions and 335 deletions

View file

@ -932,7 +932,11 @@ class ExporterReviewMov(ExporterReview):
except Exception:
self.log.info("`mov64_codec` knob was not found")
write_node["mov64_write_timecode"].setValue(1)
try:
write_node["mov64_write_timecode"].setValue(1)
except Exception:
self.log.info("`mov64_write_timecode` knob was not found")
write_node["raw"].setValue(1)
# connect
write_node.setInput(0, self.previous_node)

View file

@ -1,11 +1,12 @@
from openpype.lib import PreLaunchHook
from openpype.lib.applications import PreLaunchHook
class PrelaunchNukeAssistHook(PreLaunchHook):
"""
Adding flag when nukeassist
"""
app_groups = ["nukeassist"]
app_groups = {"nukeassist"}
launch_types = set()
def execute(self):
self.launch_context.env["NUKEASSIST"] = "1"