Switching Scenes with Backdrops and Broadcasts
Combine backdrops with broadcasts to create multi-scene projects (like a game with a title screen, game screen, and end screen).
Structure
- Create three backdrops: Title Screen, Game Screen, End Screen.
- Title Screen button: When clicked → switch backdrop to (Game Screen) → broadcast (start game).
- Each sprite: When I receive (start game) → show → start their behaviour.
- Game over: broadcast (end game) → switch backdrop to (End Screen) → sprites hide.
This pattern is the backbone of almost every complete Scratch game.