UnityEditor.CurvePresetsContentsForPopupWindow.GetPresetLibraryEditor C# (CSharp) Method

GetPresetLibraryEditor() public method

public GetPresetLibraryEditor ( ) : PresetLibraryEditor
return PresetLibraryEditor
        public PresetLibraryEditor<CurvePresetLibrary> GetPresetLibraryEditor()
        {
            return this.m_CurveLibraryEditor;
        }

Usage Example

 void OnDestroy()
 {
     if (m_CurvePresets != null)
     {
         m_CurvePresets.GetPresetLibraryEditor().UnloadUsedLibraries();
     }
 }