UnityEditor.GUIViewDebuggerHelper.GetUnifiedInstructions C# (CSharp) Method

GetUnifiedInstructions() static private method

static private GetUnifiedInstructions ( List layoutInstructions ) : void
layoutInstructions List
return void
        internal static void GetUnifiedInstructions(List<IMGUIInstruction> layoutInstructions)
        {
            GetUnifiedInstructionsInternal(layoutInstructions);
        }

Usage Example

 public override void UpdateInstructions()
 {
     this.m_InstructionClipView.UpdateInstructions();
     this.m_InstructionStyleView.UpdateInstructions();
     this.m_InstructionLayoutView.UpdateInstructions();
     this.m_Instructions.Clear();
     GUIViewDebuggerHelper.GetUnifiedInstructions(this.m_Instructions);
 }
All Usage Examples Of UnityEditor.GUIViewDebuggerHelper::GetUnifiedInstructions