Пример #1
0
        private void Awake()
        {
            CList = new DataStructure.CircularList <string>();
            CList.Enqueue("2/4");
            CList.Enqueue("3/4");
            CList.Enqueue("4/4");
            CList.Enqueue("6/8");
            CList.Enqueue("12/8");

            text = this.GetComponentInChildren <TMPro.TextMeshProUGUI>();
        }
Пример #2
0
    private void Awake()
    {
        CList = new DataStructure.CircularList <string>();
        CList.Enqueue("76");
        CList.Enqueue("80");
        CList.Enqueue("108");
        CList.Enqueue("112");
        CList.Enqueue("120");

        text = this.GetComponentInChildren <TMPro.TextMeshProUGUI>();
        CopyString();
    }
Пример #3
0
 // Start is called before the first frame update
 private void Awake()
 {
     ActiveNotes = new DataStructure.CircularList <MetronomeNote>();
     Notes       = this.GetComponentsInChildren <MetronomeNote>();
 }