mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-06 14:45:06 +08:00
21 lines
433 B
C#
21 lines
433 B
C#
|
using System;
|
|||
|
using UnityEditor;
|
|||
|
|
|||
|
namespace net.fushizen.modular_avatar.core.editor
|
|||
|
{
|
|||
|
public class ZeroIndentScope : IDisposable
|
|||
|
{
|
|||
|
private int oldIndentLevel;
|
|||
|
|
|||
|
public ZeroIndentScope()
|
|||
|
{
|
|||
|
oldIndentLevel = EditorGUI.indentLevel;
|
|||
|
EditorGUI.indentLevel = 0;
|
|||
|
}
|
|||
|
|
|||
|
public void Dispose()
|
|||
|
{
|
|||
|
EditorGUI.indentLevel = oldIndentLevel;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|