ZeroIndent.Dispose C# (CSharp) Method

Dispose() public method

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

Usage Example

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