mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 13:07:40 +02:00
Screen Tiling Split into two events + Some tweaks and new vfx! (#585)
* toss boys fixed * see saw tweaks * fixed quiz show bug * splashdown spawn tweaked * split screen tiling into two different events * screen fit added
This commit is contained in:
@ -124,10 +124,10 @@ namespace HeavenStudio.Games.Scripts_Splashdown
|
||||
Instantiate(splashPrefab, splashHolder).Init("Appearsplash");
|
||||
}
|
||||
|
||||
public void GoDown()
|
||||
public void GoDown(bool splash = true)
|
||||
{
|
||||
SetState(MovementState.Dive, startBeat);
|
||||
Instantiate(splashPrefab, splashHolder).Init("GodownSplash");
|
||||
if (splash) Instantiate(splashPrefab, splashHolder).Init("GodownSplash");
|
||||
}
|
||||
|
||||
public void Bop()
|
||||
|
Reference in New Issue
Block a user