UnityEditor.AudioMixerUtility.RepaintAudioMixerAndInspectors C# (CSharp) Method

RepaintAudioMixerAndInspectors() public static method

public static RepaintAudioMixerAndInspectors ( ) : void
return void
        public static void RepaintAudioMixerAndInspectors()
        {
            InspectorWindow.RepaintAllInspectors();
            AudioMixerWindow.RepaintAudioMixerWindow();
        }

Usage Example

 public void UndoRedoPerformed()
 {
     if (!(this.m_Controller == null))
     {
         this.m_Controller.SanitizeGroupViews();
         this.m_Controller.OnUnitySelectionChanged();
         this.m_Controller.OnSubAssetChanged();
         if (this.m_GroupTree != null)
         {
             this.m_GroupTree.OnUndoRedoPerformed();
         }
         if (this.m_GroupViews != null)
         {
             this.m_GroupViews.OnUndoRedoPerformed();
         }
         if (this.m_SnapshotListView != null)
         {
             this.m_SnapshotListView.OnUndoRedoPerformed();
         }
         if (this.m_MixersTree != null)
         {
             this.m_MixersTree.OnUndoRedoPerformed();
         }
         AudioMixerUtility.RepaintAudioMixerAndInspectors();
     }
 }
All Usage Examples Of UnityEditor.AudioMixerUtility::RepaintAudioMixerAndInspectors