Scratch Programming
FUN WITH GAMES PROGRAMMING
Visit and subscribe theCPAtube. Complete all HBL assignments on SLS & GC.
FUN WITH GAMES PROGRAMMING
Scratch Programming is a fun way to bring your animation and game ideas to live.
We created these game tutorials for you to inspire you.
Each of them has key roles to play.
...
...
Hero
// Hero starting location.
// Hero Sets Score & Broadcast depending on the situation.
// Hero checks win or lose .
// Movement by Keyboard or follow the Mouse
...
Set Score = ?
Controlled using mouse or keyboard.
....
Enemy/Enemies
// show
// Enemies starting location
// Enemies check IF <touching_Hero>
// Change Score by -10, etc
// hide
...
PowerUp
// show
// Enemies starting location
// Enemies check IF <touching_Hero>
// Change Score by -10, etc
// hide
...
Stage
// Green Flag starts Game Background
// Receive Broadcast GameWin]
// Receive Broadcast [GameWin]
// Stop[All]
...