You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Reflection; |
|
using System.Text.RegularExpressions; |
|
using Mono.Cecil; |
|
using Mono.Cecil.Cil; |
|
using Mono.Cecil.Mdb; |
|
using Mono.Collections.Generic; |
|
using UnityEditor; |
|
using UnityEditorInternal; |
|
using UnityEngine; |
|
|
|
namespace UnityTest |
|
{ |
|
public static class GuiHelper |
|
{ |
|
public static bool GetConsoleErrorPause() |
|
{ |
|
Assembly assembly = Assembly.GetAssembly(typeof(SceneView)); |
|
Type type = assembly.GetType("UnityEditorInternal.LogEntries"); |
|
PropertyInfo method = type.GetProperty("consoleFlags"); |
|
var result = (int)method.GetValue(new object(), new object[] { }); |
|
return (result & (1 << 2)) != 0; |
|
} |
|
|
|
public static void SetConsoleErrorPause(bool b) |
|
{ |
|
Assembly assembly = Assembly.GetAssembly(typeof(SceneView)); |
|
Type type = assembly.GetType("UnityEditorInternal.LogEntries"); |
|
MethodInfo method = type.GetMethod("SetConsoleFlag"); |
|
method.Invoke(new object(), new object[] { 1 << 2, b }); |
|
} |
|
} |
|
}
|
|
|