GameFramework.MovementStateInfo.GetMoveDir C# (CSharp) Method

GetMoveDir() public method

public GetMoveDir ( ) : float
return float
        public float GetMoveDir()
        {
            return m_MoveDir;
        }

Usage Example

 static public int GetMoveDir(IntPtr l)
 {
     try {
         GameFramework.MovementStateInfo self = (GameFramework.MovementStateInfo)checkSelf(l);
         var ret = self.GetMoveDir();
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }