smol fixes

This commit is contained in:
Rapandrasmus 2023-06-26 19:31:31 +02:00
parent 8a6b1b93d5
commit 6cb0272db5
2 changed files with 6 additions and 2 deletions

View file

@ -432,7 +432,7 @@ namespace HeavenStudio.Games
new MultiSound.Sound("games/nightWalkRvl/highJump2", beat - 0.75),
new MultiSound.Sound("games/nightWalkRvl/highJump3", beat - 0.5),
new MultiSound.Sound("games/nightWalkRvl/highJump4", beat - 0.25),
new MultiSound.Sound("games/nightWalkRvl/highJump5", beat),
new MultiSound.Sound("games/nightWalkRvl/highJump6", beat + 0.25),
}, false, true);
}

View file

@ -242,7 +242,7 @@ namespace HeavenStudio.Games.Scripts_AgbNightWalk
return;
}
game.playYan.Roll(Conductor.instance.songPositionInBeats);
SoundByte.PlayOneShot("games/nightWalkRvl/highJump6");
SoundByte.PlayOneShot("games/nightWalkRvl/highJump5");
anim.DoScaledAnimationAsync("Flower", 0.5f);
}
@ -251,6 +251,7 @@ namespace HeavenStudio.Games.Scripts_AgbNightWalk
if (isFish)
{
game.ScoreMiss();
game.playYan.transform.localPosition = new Vector3(0, 2);
game.playYan.Shock();
fish.DoScaledAnimationAsync("Shock", 0.5f);
handler.StopAll();
@ -274,6 +275,9 @@ namespace HeavenStudio.Games.Scripts_AgbNightWalk
game.playYan.HighJump(Conductor.instance.songPositionInBeats);
SoundByte.PlayOneShot("games/nightWalkRvl/highJump7");
rollPlatform.DoScaledAnimationAsync("RollHit", 0.5f);
game.starHandler.Evolve(game.evolveAmount);
game.hitJumps++;
AgbNightWalk.hitJumpsPersist++;
}
private void RollMissHold(PlayerActionEvent caller)