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