Lesson Objectives To understand how to make sprites interact

Slides:



Advertisements
Similar presentations
Scratch is a Visual Programming Language
Advertisements

Michael Parkes Dudley LA What can Scratch do? Make simple games, animations, presentations and stories.
A Christmas Scratch game
Code Club Session 3 Shark Eats Fish. Picture of finished product here.
Scratch Programming Session 9 of 10 Review elements to use in stories, games, etc.
Scratch Programming Session 6 of 10 If-then-else statements interactions Final projects specifications.
When you click the forever button, then whatever is in it does its thing to make flappy go. All of these buttons make flappy go and die. When you press.
Extending the Pong Example Barb Ericson Georgia Tech June 2011.
LO: Learn how to develop your game further to include interactions with the device.
Fish Chomp. The screen where you can see what happens when you play your game is called the STAGE. The SCRIPT BANK is where the types of instructions.
A Scratch tutorial. Description: You have 6 bullets to shoot at 2 targets. Every time you hit any of them you get two extra bullets but the targets get.
Scratch Internet- Open Chrome hit “Create” 1.
Timers Exploring Computer Science Lesson Objectives The students will be able to: Create a timer.
Using MIT Scratch for Programming and Control Exercise 3 Ball Game Year 9 ICT Autumn Term 2007.
We will be creating a spaceship that simulates real movements in space. The spaceship will fire a laser beam that can destroy targets. The spaceship will.
Using MIT Scratch for Programming and Control Exercise 6 – Creating a Scratch Packman Year 9 ICT Autumn Term 2007.
Scratch Programming Lesson 2 First glance to programming logic.
I put this into my scratch so that when the green flag was clicked to start the game, and wait an amount of seconds before the QR changes.
1 Understand how to use Scratch to: – Animate a sprite – Add sound to your script – Use the forever command to create a loop Lesson 2: Learning Objectives.
Scratch Programming Lesson 4 Question asking and answering.
Geometry. The screen where you can see what happens when you play your game is called the STAGE. The SCRIPT BANK is where the types of instructions are.
Fish Chomp. The screen where you can see what happens when you play your game is called the STAGE. The SCRIPT BANK is where the types of instructions.
Scratch pong challenge Pong is a classic 1970s video game  Open the pongv1.sb2 file in Scratch  Click the.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech June 2008.
Image #1 Getting Started
1 Use different costumes in Scratch to make an animation effect Synchronise interaction between 2 or more sprites Lesson 3: Learning Objectives.
Scratch Programming Lesson 3 Create a story. We are going to learn… How to change the background How to use the “say” and “think” bubbles How to change.
Variables and Random Numbers Computer App Session 4.
Marble Racer. The screen where you can see what happens when you play your game is called the STAGE. The SCRIPT BANK is where the types of instructions.
 SCRATCH is a new programming language that lets you create your own interactive stories, animations, games, music, and art.
How to create a basic game in Scratch. The Scratch Stage The Scratch stage is 480 pixels wide and 360 pixels high x increasesx decreases.
I have used Scratch, to program a guide to internet safety. This is done by using QR codes to make it more interactive and interesting for people playing.
Games Design. Last Week We were enjoying the sun and surf :~)
Lives and Scoring Games Programming in Scratch. Games Programming in Scratch L2 Lives and Scoring Learning Objectives Define a variable Understand the.
Making a Flappy Birds Game PART 2 – MAKING THE BIRD FLAP AND FALL – AND DEVELOPING THE GAME FURTHER (ADDING ADDITIONAL CHARACTERS, GOODIES, ENEMIES AND.
Scratch Part 2 – Character Commands. What does a command do?  Commands in programming allow an object whatever it is to do something. In the case of.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech May 2009.
Game Maker Tutorials Introduction Clickball IntroductionClickball Where is it? Shooting Where is it?Shooting.
Index Background Costumes Making object walk smoothly Controlling an object with the keyboard Control an object with the mouse Changing costume when hit.
Kodu Tinkering. Today we are learning about: Kodu & Tinkering ●I can explore Kodu for myself.
Scratch Helicopter Game
Movement Game Design (Scratch).
Create a Halloween Computer Game in Scratch
Customise & Explain your game
Module 1: Investigation 2 Repeating and Alternating Patterns
Dancing on Green Light.
Games Programming in Scratch
Scratch Unit Overview We are going to look at computer programming and how to create your very own computer game The piece of software we will be using.
Exploring Computer Science Lesson 4-13
Year 11 DTG Intermediate Using MIT Scratch for Programming and Control Exercise 2 Controlling movement with the keyboard Year 11 DTG Intermediate.
Exploring Computer Science Lesson 4-14
Scratch – Simple Programming
Scratch – Simple Programming
Lesson 1 Introduction to Scratch Basic blocks
Recap the basics Lesson 1.
Objectives To understand how the pen tool works
Exploring Computer Science Lesson 4-13
10 SCRATCH bLOCKS lesson 1 10 Blocks.
Image #1 Getting Started
Game Over Module 4 Lesson 2.
Exploring Computer Science Lesson 4-12
Recap the basics Lesson 1.
Exploring Computer Science Lesson 4-14
Explain what touch develop is to your students:
Exploring Computer Science Lesson 4-13
Creating a Simple Game in Scratch
Scratch Racing.
CSC 221: Introduction to Programming Fall 2018
Exploring Computer Science Lesson 4-12
Scratch – Simple Programming
Presentation transcript:

Lesson Objectives To understand how to make sprites interact To understand the FOREVER IF command   To understand how to control sprites using the keyboard

What do you think this script does? On scratch we can make sprite interact using the FOREVER IF command. IF it touches sprite 2, it goes to those co-ordinates

Extension Make 3 keys or coins to collect Create a door which will only open once the 3 items have been collected.

Extension If you want to add items to collect, you will need a score to record it. Make a new variable called Score.

Create items to collect Once you have created your variable you can add a script like this to each item. When the flag is clicked it will reset the score and make sure the key is sowing When it touches the ball, it will add 1 to the score and disappear

Opening the door When the green flag is clicked it will reset the game and show the door If the score equals 3 (if all 3 keys have been collected) the door will hide.