Skip to content

Instantly share code, notes, and snippets.

@rogangriffin
rogangriffin / ebsynthfile.py
Last active March 12, 2024 21:25
Programmatically generate an EBS file for EBSynth
class EBSynthKeyFrame:
useFirstFrame = False
useLastFrame = False
firstFrame = 0
keyFrame = 0
lastFrame = 0
outputPath = ""
def __init__(self, inuseFirstFrame=False, inuseLastFrame=False, infirstFrame=0, inkeyFrame=0, inlastFrame=0, inoutputPath=""):
self.useFirstFrame = inuseFirstFrame