UnityEditor.BaseInspectView.OnDoubleClickInstruction C# (CSharp) Method

OnDoubleClickInstruction() abstract private method

abstract private OnDoubleClickInstruction ( int index ) : void
index int
return void
        internal abstract void OnDoubleClickInstruction(int index);
        internal abstract void OnSelectedInstructionChanged(int newSelectionIndex);

Usage Example

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

            inspectViewForType.OnDoubleClickInstruction(instruction.typeInstructionIndex);
        }