Added scaled difficulty

This commit is contained in:
2026-01-22 23:25:16 +00:00
parent 3c25ec932f
commit e5e4e5b7b3
3 changed files with 10 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using InterfaceOff.MainMenu;
using UnityEngine;
using UnityEngine.UI;
@@ -39,8 +40,8 @@ namespace InterfaceOff.WorldScene
{
if (Spawner.AutoSpawn)
{
ScoreText.text = $"Score: {Time.timeSinceLevelLoad:F1}";
Score = Time.timeSinceLevelLoad;
Score = Time.timeSinceLevelLoad * DifficultyManager.DifficultyEffect;
ScoreText.text = $"Score: {Score:F1}";
}
else