mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 13:57:43 +02:00
Fix Formatting Errors
notepad++ is a fuck
This commit is contained in:
@ -20,7 +20,7 @@ namespace HeavenStudio.Games.Loaders
|
||||
defaultLength = 7,
|
||||
parameters = new List<Param>()
|
||||
{
|
||||
new Param("type", CoinToss.CoinVariation.Default, "Variation", "Special Coin Variations"),
|
||||
new Param("type", CoinToss.CoinVariation.Default, "Variation", "Special Coin Variations"),
|
||||
new Param("toggle", false, "Audience Reaction", "Enable Audience Reaction"),
|
||||
}
|
||||
},
|
||||
@ -168,21 +168,21 @@ namespace HeavenStudio.Games
|
||||
switch (type)
|
||||
{
|
||||
case (int) CoinToss.CoinVariation.Cowbell:
|
||||
//this was intentional. it was to avoid the throw and cowbells to go offbeat.
|
||||
Jukebox.PlayOneShotGame("coinToss/cowbell1");
|
||||
MultiSound.Play(new MultiSound.Sound[] {
|
||||
//this was intentional. it was to avoid the throw and cowbells to go offbeat.
|
||||
Jukebox.PlayOneShotGame("coinToss/cowbell1");
|
||||
MultiSound.Play(new MultiSound.Sound[] {
|
||||
new MultiSound.Sound("coinToss/cowbell2", beat + 1f, offset: 0.01f),
|
||||
new MultiSound.Sound("coinToss/cowbell1", beat + 2f, offset: 0.01f),
|
||||
new MultiSound.Sound("coinToss/cowbell2", beat + 3f, offset: 0.01f),
|
||||
new MultiSound.Sound("coinToss/cowbell1", beat + 4f, offset: 0.01f),
|
||||
new MultiSound.Sound("coinToss/cowbell1", beat + 4f, offset: 0.01f),
|
||||
new MultiSound.Sound("coinToss/cowbell2", beat + 5f, offset: 0.01f),
|
||||
new MultiSound.Sound("coinToss/cowbell1", beat + 6f, offset: 0.01f),
|
||||
new MultiSound.Sound("coinToss/cowbell1", beat + 6f, offset: 0.01f),
|
||||
});
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
this.audienceReacting = audienceReacting;
|
||||
|
||||
coin = ScheduleInput(beat, 6f, InputType.STANDARD_DOWN, CatchSuccess, CatchMiss, CatchEmpty);
|
||||
|
Reference in New Issue
Block a user