Pathfinding.Path.ForceLogError C# (CSharp) 메소드

ForceLogError() 공개 메소드

public ForceLogError ( string msg ) : void
msg string
리턴 void
		public void ForceLogError (string msg) {
			Error();

			_errorLog += msg;

			Debug.LogError (msg);
		}

Usage Example

 static int ForceLogError(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         Pathfinding.Path obj  = (Pathfinding.Path)ToLua.CheckObject <Pathfinding.Path>(L, 1);
         string           arg0 = ToLua.CheckString(L, 2);
         obj.ForceLogError(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }