UnityEditor.GUIViewDebuggerHelper.GetLayoutInstructions C# (CSharp) Method

GetLayoutInstructions() static private method

static private GetLayoutInstructions ( List layoutInstructions ) : void
layoutInstructions List
return void
        internal static void GetLayoutInstructions(List<IMGUILayoutInstruction> layoutInstructions)
        {
            GetLayoutInstructionsInternal(layoutInstructions);
        }

Usage Example

 public override void UpdateInstructions()
 {
     this.m_LayoutInstructions.Clear();
     GUIViewDebuggerHelper.GetLayoutInstructions(this.m_LayoutInstructions);
 }