UnityEditor.BaseInspectView.DoDrawSelectedInstructionDetails C# (CSharp) Method

DoDrawSelectedInstructionDetails() abstract private method

abstract private DoDrawSelectedInstructionDetails ( int index ) : void
index int
return void
        internal abstract void DoDrawSelectedInstructionDetails(int index);
        protected void DrawInspectedRect(Rect instructionRect)

Usage Example

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

            inspectViewForType.DoDrawSelectedInstructionDetails(instruction.typeInstructionIndex);
        }