UnityEditor.BaseInspectView.OnSelectedInstructionChanged C# (CSharp) Method

OnSelectedInstructionChanged() abstract private method

abstract private OnSelectedInstructionChanged ( int newSelectionIndex ) : void
newSelectionIndex int
return void
        internal abstract void OnSelectedInstructionChanged(int newSelectionIndex);
        public virtual void SelectRow(int index)

Usage Example

        internal override void OnSelectedInstructionChanged(int index)
        {
            base.m_ListViewState.row = index;
            IMGUIInstruction instruction        = this.m_Instructions[base.m_ListViewState.row];
            BaseInspectView  inspectViewForType = this.GetInspectViewForType(instruction.type);

            inspectViewForType.OnSelectedInstructionChanged(instruction.typeInstructionIndex);
            this.ShowOverlay();
        }
All Usage Examples Of UnityEditor.BaseInspectView::OnSelectedInstructionChanged