Ejemplo n.º 1
0
 public IdleAnimationData(string Tag = null)
     : base(Tag)
 {
     AnimationGroupSection = new AnimationGroupSection();
     LoopingMin            = new Byte();
     LoopingMax            = new Byte();
     Unused1     = new Byte();
     ReplayDelay = new Int16();
     Flags       = new IdleAnimationFlags();
     Unused2     = new Byte();
 }
Ejemplo n.º 2
0
 public IdleAnimationData(AnimationGroupSection AnimationGroupSection, Byte LoopingMin, Byte LoopingMax, Byte Unused1, Int16 ReplayDelay, IdleAnimationFlags Flags, Byte Unused2)
 {
     this.AnimationGroupSection = AnimationGroupSection;
     this.LoopingMin            = LoopingMin;
     this.LoopingMax            = LoopingMax;
     this.Unused1     = Unused1;
     this.ReplayDelay = ReplayDelay;
     this.Flags       = Flags;
     this.Unused2     = Unused2;
 }