ZeroIndent.Dispose C# (CSharp) Méthode

Dispose() public méthode

public Dispose ( ) : void
Résultat void
            public void Dispose() {
                EditorGUI.indentLevel = _originalIndent; //restore original indentation
            }
        }

Usage Example

 public void Dispose()
 {
     //restore indentation state:
     indentReset.Dispose();
     //finish horizontal group:
     EditorGUILayout.EndHorizontal();
 }
All Usage Examples Of ZeroIndent::Dispose