PauseSkillAnimation() private method

private PauseSkillAnimation ( int actorId, bool pause ) : void
actorId int
pause bool
return void
Example #1
0
 static public int PauseSkillAnimation(IntPtr l)
 {
     try {
         GameFramework.EntityController self = (GameFramework.EntityController)checkSelf(l);
         System.Int32 a1;
         checkType(l, 2, out a1);
         System.Boolean a2;
         checkType(l, 3, out a2);
         self.PauseSkillAnimation(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }