コード例 #1
0
 public AudioLibraryList(EditorWindow windowInstance)
 {
     _SelectionList           = new SelectableList(DrawElement);
     _SelectionList.OnSelect += OnSelect;
     _CurrentWindow           = windowInstance;
 }
コード例 #2
0
 public AudioAssetEditor(EditorWindow currentWindow)
 {
     _SelectableList = new SelectableList(DrawElement);
     _CurrentWindow  = currentWindow;
 }
コード例 #3
0
 public AudioAssetEditor()
 {
     _SelectableList = new SelectableList(DrawElement);
 }
コード例 #4
0
 public AudioLibraryEditor(EditorWindow windowInstance)
 {
     _SelectableAudioAssetList           = new SelectableList(DrawElement);
     _SelectableAudioAssetList.OnSelect += OnAudioAssetSelected;
     _currentWindow = windowInstance;
 }
コード例 #5
0
 public AudioLibraryEditor()
 {
     _SelectableAudioAssetList           = new SelectableList(DrawElement);
     _SelectableAudioAssetList.OnSelect += OnAudioAssetSelected;
 }
コード例 #6
0
 public AudioLibraryList()
 {
     _SelectionList           = new SelectableList(DrawElement);
     _SelectionList.OnSelect += OnSelect;
 }