Connect scene to scene #624
jgbourque
announced in
Mini-Games
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Why this task matters
It is important to make sure that one scene flows smoothly to the next. This task will help you connect scenes together in the right order.
Steps
git switch -c next-scene
in the command line.Tips
In mini-games, the way to set which scene comes next is a little different:
1. Use CollectibleItem, Not Cinematic, for Scene Switching
In intro and outro scenes, you may have used the Cinematic node to switch to the next scene after some dialogue. In mini-games, you should not do that. Instead, you should always set the next scene path inside the CollectibleItem node (the one that appears when the game is completed). Why? Because if you use the Cinematic node, the scene could change before the player has actually completed the mini-game.
Beta Was this translation helpful? Give feedback.
All reactions