ManeuverNodeSplitter.INodeSplitter.DebugLog C# (CSharp) 메소드

DebugLog() 보호된 메소드

protected DebugLog ( string format ) : void
format string
리턴 void
        protected void DebugLog(string format, params object[] args)
        {
            #if DEBUG
            Debug.Log(string.Format(format, args));
            #endif
        }