Refactor other references to 'startFrame'/'endFrame' to 'frameStart'/'frameEnd'

This commit is contained in:
Roy Nieterau 2022-01-05 11:25:33 +01:00
parent 19d2faac7e
commit cee20eb256
5 changed files with 7 additions and 7 deletions

View file

@ -65,7 +65,7 @@ class ValidateAbcPrimitiveToDetail(pyblish.api.InstancePlugin):
cls.log.debug("Checking with path attribute: %s" % path_attr)
# Check if the primitive attribute exists
frame = instance.data.get("startFrame", 0)
frame = instance.data.get("frameStart", 0)
geo = output.geometryAtFrame(frame)
# If there are no primitives on the start frame then it might be

View file

@ -38,7 +38,7 @@ class ValidateAlembicInputNode(pyblish.api.InstancePlugin):
cls.log.warning("No geometry output node found, skipping check..")
return
frame = instance.data.get("startFrame", 0)
frame = instance.data.get("frameStart", 0)
geo = node.geometryAtFrame(frame)
invalid = False