UnityEditor.GUIViewDebuggerHelper.GetUnifiedInstructions C# (CSharp) Méthode

GetUnifiedInstructions() static private méthode

static private GetUnifiedInstructions ( List layoutInstructions ) : void
layoutInstructions List
Résultat 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