mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 13:52:15 +01:00
skip check if node has no 'trange' parameter
This commit is contained in:
parent
3817ed150d
commit
25c8a424ec
1 changed files with 8 additions and 0 deletions
|
|
@ -57,6 +57,14 @@ class ValidateFrameRange(pyblish.api.InstancePlugin):
|
|||
return
|
||||
|
||||
rop_node = hou.node(instance.data["instance_node"])
|
||||
|
||||
if rop_node.parm("trange") is None:
|
||||
cls.log.debug(
|
||||
"Skipping Check, Node has no 'trange' parameter: {}"
|
||||
.format(rop_node.path())
|
||||
)
|
||||
return
|
||||
|
||||
if instance.data["frameStart"] > instance.data["frameEnd"]:
|
||||
cls.log.info(
|
||||
"The ROP node render range is set to "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue