Tri-Inspector/Unity.InternalAPIEditorBridge.012/InternalEditorUtilityProxy.cs

17 lines
492 B
C#
Raw Normal View History

using UnityEditorInternal;
2022-06-01 04:19:33 -04:00
namespace TriInspectorUnityInternalBridge
{
internal static class InternalEditorUtilityProxy
{
public static bool GetIsInspectorExpanded(UnityEngine.Object obj)
{
return InternalEditorUtility.GetIsInspectorExpanded(obj);
}
public static void SetIsInspectorExpanded(UnityEngine.Object obj, bool isExpanded)
{
InternalEditorUtility.SetIsInspectorExpanded(obj, isExpanded);
}
}
}