This commit is contained in:
2025-12-15 03:44:53 +08:00
parent 25a5950e8d
commit 2a3bcf7423
12 changed files with 326 additions and 107 deletions

View File

@@ -15,8 +15,8 @@ namespace Presenter {
this.scoreView.SetScore(this.scoreService.Score);
}
public void Tick() {
this.scoreView.UpdateScore();
public void Tick(float scoreSpeed) {
this.scoreView.UpdateScore(scoreSpeed);
}
private void OnScoreChanged(int score) {