SCRATCH TUTORIAL SPACE SHUTTLE MISSION STS-2020
Lesson 18 Bug Fixes, Mods and Updates
- Description:
Bugs (little things that don't work right), modifications (mods), and updates, are part of designing and programming. After finishing a game, there are always bugs to fix, things you can do better, features you can add. You can make the changes and then publish an update. This is STS-2020 Version 1.0. The next update will be Version 1.1. Normally if you make major changes, say if you change or added backgounds, then you would call it STS-2020 Version 2.0.
Did you notice any bugs in this game?
I found 3 little bugs.
The docking light still shows when the you switch to the shuttle launch background.
When you press (h) to show the Help sprite, it hides too fast to read.
The Help sprite dosen't show sometimes after gameover background switches to the title page background.
This is how I fixed the bugs. Read the code, find the fixes, then make the changes to your game. The docking light still shows when the you switch to the shuttle launch background.
When you press (h) to show the Help sprite, it hides too fast to read.
The Help sprite dosen't show sometimes after gameover background switches to the title page background.
This bug is sneaky and hard to find.
When the Help sprite recieves the message gameover, it waits 10 seconds and executes show
When the Stage recieves the message gameover, it waits 10 seconds switches to the the title page background and then stops all scripts.
Whats happens is: Both scripts are set to wait 10 seconds. The computer is fast sometimes the Help sprite script executes show before the Stage script executes stop all scripts and sometimes it doesn't.
How would you fix this bug?- !!!!Congradulations!!!!!! You Finished The Game