noch mehr sprechen

This commit is contained in:
2024-04-06 21:43:51 +02:00
parent 2f5f25d0bd
commit 2ecb40333c
7 changed files with 174 additions and 45 deletions

View File

@ -41,7 +41,7 @@ public partial class GameManager : MonoBehaviourSingleton<GameManager>
private DifficultySettings _difficultySettings;
[SerializeField]
private int _maxContextBufferSize = 5;
private int _maxContextBufferSize = 3;
[SerializeField]
private CircularBuffer<string> _contextBuffer;
@ -89,6 +89,8 @@ public partial class GameManager : MonoBehaviourSingleton<GameManager>
TimeManager.Instance.Init();
_contextBuffer = new CircularBuffer<string>(_maxContextBufferSize);
_contextBuffer.Add("The Developer is greatful to work at this office with Gottfried");
_contextBuffer.Add("The Developer excited to develope the new game");
_difficultySettings = _difficulty.GetSettings();
@ -203,7 +205,7 @@ public partial class GameManager : MonoBehaviourSingleton<GameManager>
}
return output;
}
return null;
return string.Empty;
}
/// <summary>