-
Notifications
You must be signed in to change notification settings - Fork 258
Vertical wipe transition between LoreQuest ink combat rounds #1145
New issue
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
Conversation
|
Test build no longer available. |
| enum Effect { | ||
| FADE, LEFT_TO_RIGHT_WIPE, RIGHT_TO_LEFT_WIPE, RADIAL, TOP_TO_BOTTOM_WIPE, BOTTOM_TO_TOP_WIPE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| enum Effect { | |
| FADE, LEFT_TO_RIGHT_WIPE, RIGHT_TO_LEFT_WIPE, RADIAL, TOP_TO_BOTTOM_WIPE, BOTTOM_TO_TOP_WIPE | |
| enum Effect { | |
| FADE, LEFT_TO_RIGHT_WIPE, RIGHT_TO_LEFT_WIPE, RADIAL, TOP_TO_BOTTOM_WIPE, BOTTOM_TO_TOP_WIPE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@DonSeja06 great work! I think if you commit my suggestion above the check will pass. It removes trailing whitespace.
manuq
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This works like a charm! I played levels 1 to 3 of the ink combat and the new vertical transitions work very well.
Also great work describing your changes in the pull request title and description!
Two new vertical wipe transitions have been added to improve navigation between ink combat rounds. These transitions help visually connect the rounds, since they are arranged vertically.
The enum Effect in transitions.gd now includes TOP_TO_BOTTOM_WIPE and BOTTOM_TO_TOP_WIPE, each wired to a new texture in res://scenes/globals/scene_switcher/transitions/.
Teleporters in the first two ink combat rounds are configured to use the appropriate vertical wipe.
Fix #790