gandw on balls has been added

This commit is contained in:
Rapandrasmus
2023-06-13 15:51:35 +02:00
parent 349867d983
commit 6eac745eae
12 changed files with 514 additions and 213 deletions

View File

@ -11,11 +11,13 @@ namespace HeavenStudio.Games.Scripts_WorkingDough
{
private double startBeat = double.MinValue;
private Path path;
[SerializeField] private GameObject gandw;
public void Init(double beat)
public void Init(double beat, bool hasGandw)
{
startBeat = beat;
path = WorkingDough.instance.GetPath("NPCBall");
if (gandw != null) gandw.SetActive(hasGandw);
Update();
}