Buggy timeline object resizing

This commit is contained in:
Braedon
2022-01-17 14:23:18 -05:00
parent 6a05f31506
commit 06ef8986c7
13 changed files with 798 additions and 158 deletions

View File

@ -279,13 +279,13 @@ namespace RhythmHeavenMania
preloadedGames.Add(g);
}
public EventCaller.MiniGame GetGame(string name)
public Minigames.Minigame GetGame(string name)
{
return eventCaller.minigames.Find(c => c.name == name);
}
// never gonna use this
public EventCaller.MiniGame GetCurrentGame()
public Minigames.Minigame GetCurrentGame()
{
return eventCaller.minigames.Find(c => c.name == transform.GetComponentsInChildren<Transform>()[1].name);
}