Created
July 12, 2020 13:24
-
-
Save smoogipoo/87b2c4f30460bb5b4f05098f61df8f91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (UpsideDown) | |
| { | |
| if (ModManager.CheckActive(Player.currentScore.EnabledMods, Mods.Hidden)) | |
| hiddenFade.Position.Y = HitPosition + hiddenMask.VectorScale.Y / 1.6f; | |
| else | |
| hiddenFade.Position.Y = WindowManager.DEFAULT_HEIGHT - hiddenMask.VectorScale.Y / 1.6f; | |
| } | |
| else | |
| { | |
| if (ModManager.CheckActive(Player.currentScore.EnabledMods, Mods.Hidden)) | |
| hiddenFade.Position.Y = HitPosition - hiddenMask.VectorScale.Y / 1.6f; | |
| else | |
| hiddenFade.Position.Y = hiddenMask.VectorScale.Y / 1.6f; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment