mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-30 02:06:27 +00:00
Added a failure animation if you don't get the emerald. https://cdn.discordapp.com/attachments/402861856219463681/405477752972509185/srb20004.gif
This commit is contained in:
parent
5be0c1f37d
commit
4876fbc4bd
1 changed files with 19 additions and 3 deletions
|
|
@ -399,13 +399,29 @@ void Y_IntermissionDrawer(void)
|
|||
}
|
||||
else
|
||||
{
|
||||
if (emeraldbounces < 3)
|
||||
if (emeralds & (1 << em))
|
||||
{
|
||||
if (emeraldbounces < 3)
|
||||
{
|
||||
emeraldmomy += 1;
|
||||
emeraldy += emeraldmomy;
|
||||
if (emeraldy > 74)
|
||||
{
|
||||
S_StartSound(NULL, sfx_tink); // tink
|
||||
emeraldbounces++;
|
||||
emeraldmomy = -(emeraldmomy/2);
|
||||
emeraldy = 74;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
emeraldmomy += 1;
|
||||
emeraldy += emeraldmomy;
|
||||
if (emeraldy > 74)
|
||||
emeraldx += intertic - 6;
|
||||
if (emeraldbounces < 1 && emeraldy > 74)
|
||||
{
|
||||
S_StartSound(NULL, sfx_tink); // tink
|
||||
S_StartSound(NULL, sfx_shldls); // nope
|
||||
emeraldbounces++;
|
||||
emeraldmomy = -(emeraldmomy/2);
|
||||
emeraldy = 74;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue