Beispiel #1
0
 public RigAnimation(Rig.Type rigType, string name, bool loop, Dictionary <string, float> priorities)
 {
     this.rigType    = rigType;
     this.name       = name;
     this.loop       = loop;
     this.priorities = priorities;
 }
Beispiel #2
0
 public static RigAnimation GetAnimationFromLibrary(Rig.Type rigType, string name)
 {
     return(animationLibrary[rigType][name].Duplicate());
 }
Beispiel #3
0
 public RigAnimation(Rig.Type rigType, string name, bool loop)
 {
     this.rigType = rigType;
     this.name    = name;
     this.loop    = loop;
 }