C# Class NugetForUnity.NuspecEditor

Inheritance: UnityEditor.Editor
Exibir arquivo Open project: GlitchEnzo/NuGetForUnity

Public Methods

Method Description
OnEnable ( ) : void

Automatically called by Unity when the Inspector is first opened (when a .nuspec file is clicked on in the Project view).

OnInspectorGUI ( ) : void

Allow the Inspector GUI to behave as normal if it's NOT a .nuspec file.

Protected Methods

Method Description
OnHeaderGUI ( ) : void

Use the Header GUI to draw the controls since the Inspector GUI method call is disabled by Unity.

Method Details

OnEnable() public method

Automatically called by Unity when the Inspector is first opened (when a .nuspec file is clicked on in the Project view).
public OnEnable ( ) : void
return void

OnHeaderGUI() protected method

Use the Header GUI to draw the controls since the Inspector GUI method call is disabled by Unity.
protected OnHeaderGUI ( ) : void
return void

OnInspectorGUI() public method

Allow the Inspector GUI to behave as normal if it's NOT a .nuspec file.
public OnInspectorGUI ( ) : void
return void