Added static access for score
This commit is contained in:
@@ -18,10 +18,15 @@ namespace InterfaceOff.WorldScene
|
||||
[field: SerializeField] private WindowSpawner Spawner { get; set; }
|
||||
|
||||
private static List<PlayerScore> PlayerScores { get; } = new();
|
||||
private static ScoreTracker Instance { get; set; }
|
||||
|
||||
private bool StoredScore = false;
|
||||
private float Score = 0f;
|
||||
|
||||
public static float CurrentScore => Instance.Score;
|
||||
|
||||
private void Awake() => Instance = this;
|
||||
|
||||
private void Update()
|
||||
{
|
||||
if (Spawner.AutoSpawn)
|
||||
|
||||
Reference in New Issue
Block a user