UnityEditor.AudioMixerGroupViewList.NameChanged C# (CSharp) Method

NameChanged() public method

public NameChanged ( int index, string newName ) : void
index int
newName string
return void
        public void NameChanged(int index, string newName)
        {
            this.LoadFromBackend();
            MixerGroupView view = this.m_Views[index];
            view.name = newName;
            this.m_Views[index] = view;
            this.SaveToBackend();
        }