Esempio n. 1
0
 public void Initialize()
 {
     _animNames = new string[(int)eAnimType.max_cnt];
     for (int i = 0; i < (int)eAnimType.max_cnt; ++i)
     {
         eAnimType type = (eAnimType)i;
         _animNames[i] = type.ToString();
     }
 }
Esempio n. 2
0
 public string GetAnimName(eAnimType type)
 {
     return(_animNames[(int)type]);
 }
Esempio n. 3
0
 //アニメーションストップ
 public void StopAnim(eAnimType type)
 {
     animPlayFlags[(int)type] = false;
 }