UnityEditor.UnifiedInspectView.OnDoubleClickInstruction C# (CSharp) Method

OnDoubleClickInstruction() private method

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