We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug During the "get varia suit" cutscene, Sarah is supposed to have a glow around her. This got borked during the reconsuction I believe.
To Reproduce Obtain the varia suit
Expected behavior During the cutscene, Sarah should have a white glow around her.
Media Cutscene with it being gone https://cdn.discordapp.com/attachments/885758931803193344/945882115147448330/GlowGone_SF16.mp4
Cutscene with it being there https://youtu.be/7yzByD7_v9g?t=1426 (23:47)
Platform (please complete the following information): All
Game Version: 1.5.5
Additional context Discovered by Monody in Discord: https://discord.com/channels/297870727422541826/885758931803193344/945882115847905300
The text was updated successfully, but these errors were encountered:
Fix for this issue: oSuitChangeFX step event
if (state == 3) { if (bg3alpha < 1) bg3alpha += 0.05; else { state = 4; bg3alpha = 1; bg1alpha = 0; if instance_exists(oFakeItemBall) { with (oFakeItemBall) instance_destroy(); } + instance_create(x, y, oSuitChangeFX2); if (global.SuitChangeGravity == 0) scr_variasuitswap(); else global.currentsuit = 2; } }
Sorry, something went wrong.
There is also a mistake in the create event of oSuitChangeFX2 image_index is used where sprite_index should be.
image_index
sprite_index
gml_Object_oSuitChangeFX2_Create_0
if (oControl.mod_fusion == 1) - image_index = 1133 + sprite_index = sSuitChangeFX2_fusion alarm[0] = 60
No branches or pull requests
Describe the bug
During the "get varia suit" cutscene, Sarah is supposed to have a glow around her. This got borked during the reconsuction I believe.
To Reproduce
Obtain the varia suit
Expected behavior
During the cutscene, Sarah should have a white glow around her.
Media
Cutscene with it being gone
https://cdn.discordapp.com/attachments/885758931803193344/945882115147448330/GlowGone_SF16.mp4
Cutscene with it being there
https://youtu.be/7yzByD7_v9g?t=1426 (23:47)
Platform (please complete the following information):
All
Game Version:
1.5.5
Additional context
Discovered by Monody in Discord:
https://discord.com/channels/297870727422541826/885758931803193344/945882115847905300
The text was updated successfully, but these errors were encountered: