UnityEngine.Application.RegisterLogCallback C# (CSharp) Method

RegisterLogCallback() public static method

public static RegisterLogCallback ( LogCallback handler ) : void
handler LogCallback
return void
        public static void RegisterLogCallback(LogCallback handler)
        {
            throw new NotImplementedException();
        }

Usage Example

コード例 #1
0
 public static void RegisterLogCallbackThreaded(Application.LogCallback handler)
 {
     Application.RegisterLogCallback(handler, true);
 }
All Usage Examples Of UnityEngine.Application::RegisterLogCallback