UnityEditor.UnifiedInspectView.DoDrawSelectedInstructionDetails C# (CSharp) Method

DoDrawSelectedInstructionDetails() private method

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