void Update()
 {
     if (Time.time > nextBeat)
     {
         nextBeat = Time.time + beatInterval;
         modelCore.BoardUpdate();
     }
 }