mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-23 19:31:05 +00:00
Sev wanted no darkness during the initial animation... I think this is an acceptible compromise!
https://cdn.discordapp.com/attachments/428262628893261828/644295409283497995/srb20058.gif
This commit is contained in:
parent
39d80e1cba
commit
3afe152a86
1 changed files with 3 additions and 3 deletions
|
@ -2691,6 +2691,9 @@ void F_TitleScreenDrawer(void)
|
|||
// Ribbon unfurls, revealing SONIC text, from tic 0 to tic 24. SONIC text is pre-baked into this ribbon graphic.
|
||||
V_DrawSciencePatch(39<<FRACBITS, 88<<FRACBITS, 0, TTRIBB[min(max(0, finalecount), 24)], sc);
|
||||
|
||||
// Darken non-text things.
|
||||
V_DrawFadeScreen(0xFF00, 12);
|
||||
|
||||
// Animate SONIC text while the ribbon unfurls, from tic 0 to tic 28.
|
||||
if(finalecount >= 0)
|
||||
V_DrawSciencePatch(89<<FRACBITS, 92<<FRACBITS, 0, TTSONT[min(finalecount, 28)], sc);
|
||||
|
@ -3283,9 +3286,6 @@ void F_TitleScreenDrawer(void)
|
|||
}
|
||||
}
|
||||
|
||||
if (finalecount <= 29)
|
||||
V_DrawFadeScreen(0xFF00, 12);
|
||||
|
||||
#undef CHARSTART
|
||||
#undef SONICSTART
|
||||
#undef SONICIDLE
|
||||
|
|
Loading…
Reference in a new issue