Validate V-Ray proxy frame range with generic frame range validator

This commit is contained in:
Roy Nieterau 2018-10-05 10:35:25 +02:00
parent 7114fcf6fc
commit dcac192e9c
2 changed files with 2 additions and 5 deletions

View file

@ -20,7 +20,8 @@ class ValidateFrameRange(pyblish.api.InstancePlugin):
families = ["colorbleed.animation",
"colorbleed.pointcache",
"colorbleed.camera",
"colorbleed.renderlayer"]
"colorbleed.renderlayer",
"oolorbleed.vrayproxy"]
def process(self, instance):

View file

@ -21,7 +21,3 @@ class ValidateVrayProxy(pyblish.api.InstancePlugin):
if not data["setMembers"]:
cls.log.error("'%s' is empty! This is a bug" % instance.name)
if data["animation"]:
if data["endFrame"] < data["startFrame"]:
cls.log.error("End frame is smaller than start frame")