def nextFrame(self, *args):
'''
Go to the next frame based on the current time and frame list.
'''
current = mc.currentTime(query=True)
for f in [x+self.startFrame for x in self.frameMarks]:
if current >= f:
continue
mc.currentTime(f)
break
评论列表
文章目录