UnityEditor.GUIViewDebuggerHelper.GetUnifiedInstructions C# (CSharp) 메소드

GetUnifiedInstructions() 정적인 개인적인 메소드

static private GetUnifiedInstructions ( List layoutInstructions ) : void
layoutInstructions List
리턴 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