Esempio n. 1
0
 public KeyFrame(Frame frameRef, float duration, string[] editorscripts, KeyFrameScript[] scripts)
 {
     this.frameRef = frameRef;
     this.duration = duration;
     this.editorScripts = editorscripts;
     this.scripts = scripts;
 }
Esempio n. 2
0
 public KeyFrame(Frame frameRef, float duration, KeyFrameScript[] scripts)
 {
     this.frameRef = frameRef;
     this.duration = duration;
     this.scripts = scripts;
     editorScripts = new string[0];
 }