Pathfinding.Path.GetState C# (CSharp) Method

GetState() public method

public GetState ( ) : PathState
return PathState
		public PathState GetState () {
			return (PathState)state;
		}

Usage Example

 static int GetState(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         Pathfinding.Path obj = (Pathfinding.Path)ToLua.CheckObject <Pathfinding.Path>(L, 1);
         PathState        o   = obj.GetState();
         ToLua.Push(L, o);
         return(1);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
All Usage Examples Of Pathfinding.Path::GetState