© LaunchPad Learning Inc. All rights reserved.

Slides:



Advertisements
Similar presentations
Create a Simple Game in Scratch
Advertisements

Create a Simple Game in Scratch
Michael Parkes Dudley LA What can Scratch do? Make simple games, animations, presentations and stories.
Hamilton County Developmental Disabilities Services
Code Club Session 3 Shark Eats Fish. Picture of finished product here.
Digital Art in Scratch part 1 Barb Ericson Georgia Tech Oct 2010.
Scratch Programming Lesson 2 First glance to programming logic.
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.
Section 1 Introduction National 4/5 Scratch Course.
Digital Art in Scratch part 1 Barb Ericson Georgia Tech May 2011.
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
Cloning in Scratch Computer App Session 6. Cloning in Scratch Learning Objectives: I will clone sprites in Scratch to create copies of an existing sprite.
Welcome to Scratch By Miss Key. The Main Screen Viewing screen with choice of views.
Rotation and Revolution
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.
Introduction to Scratch We will be using the Scratch Environment today, so please log in to the Scratch website (scratch.mit.edu)
Using MIT Scratch for Programming and Control Programming 9.
Functions / Blocks.
Create a Halloween Computer Game in Scratch
Module 2: Investigation 3
Scratch for Interactivity
Intro CS – Loops & Creating Shapes
Scratch: iteration / repetition / loops
We are Astronauts Learning Objectives: I can open Scratch
Unit 2 Getting Started With
Scratch – Simple Programming
MMoM - Lesson 4.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Loopy Motion Control.
Stopwatch Cards Stopwatch Cards
Introduction to.
Introduction to Coding
Scratch – Simple Programming
Module 2 Lesson 3 Over and Over Again
Go to =>
Building a Balloon Rocket Car
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Hour of Code.
Introduction to scratch animation
Go to =>
Stopwatch Cards Stopwatch Cards
Section 1 Introduction To Programming
Section 3 Programming with Turtle Graphics
Mod 2 Lesson 2 Repeating Debugging
Mod 2 Lesson 2 Repeating with loops
Stopwatch Cards Stopwatch Cards
Code to Enhance Learning
Game Over Module 4 Lesson 2.
Introduction to Snap Programming
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Getting Started with Scratch
Stopwatch Cards Stopwatch Cards
Scratch Lesson 2.
Module 2 Lesson 3 Over and Over Again
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Mod 2 Lesson 2 Repeating with loops
Module 2 Lesson 3 Over and Over Again
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Creating a Simple Game in Scratch
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Stopwatch Cards Stopwatch Cards
Lesson Nine Variables.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Stopwatch Cards Stopwatch Cards
Using MIT Scratch for Programming and Control Exercise 5 – Drawing with Scratch Year 9 ICT Autumn Term 2007.
Scratch – Simple Programming
Presentation transcript:

Empowering students with the skills required to lead the way in hi-tech world.

© LaunchPad Learning Inc. All rights reserved. Section 1 Introduction © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Scratch Homepage © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Let’s meet Sprite Demo side Your Canvas © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Let’s try a few things Task: 1 Change the background of demo screen. © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Import Sun Task: 2- Lets import sun © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Make Sun Smaller Task: 3 Decrease the size of sun © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Lets Import 2 planets Task: 4 Import Earth and make it smaller Import Saturn and make it smaller Now you should have three sprites. © LaunchPad Learning Inc. All rights reserved.

Section 1b Let’s start the code © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Where to code? You have to code under scripts © LaunchPad Learning Inc. All rights reserved.

First we will set positions of all planets © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. What are coordinates © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. X axis X axis © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Y axis Y axis © LaunchPad Learning Inc. All rights reserved.

Let’s guess the coordinates © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Place the Sun Where is the sun in the solar system? Lets put the Sun in the Centre (Origin) at 0,0 © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Place the Saturn © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Place the Earth Is the earth or Saturn closer to sun? © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Step 2 © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Pen Command What do clear and “pen down” commands do? Lets put these on both Saturn and Earth © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Step 3 © LaunchPad Learning Inc. All rights reserved.

Point In Direction Command What direction will planets go in? UP (0) © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Step 4 © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Loops Instruction to computer to repeat Repeat a portion of code for a set number of times. Let’s learn about loops with an example. © LaunchPad Learning Inc. All rights reserved.

Let’s make 1 PBJ Sandwich How many repetitions required for 500 sandwiches? What do you need to make one peanut butter and jam sandwich? Start Spread Peanut butter on one slice Spread jam on one slice Put both slices together End © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Loops in Scratch Loops in scratch are called “repeat” and “forever”. Repeat command runs for a certain number of type.   © LaunchPad Learning Inc. All rights reserved.

Lets use loops on our planets © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Step 5 © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Move Command Now we have to move our planets. Let’s learn how to move earth © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Move Command Now we have to move our planets. Let’s learn how to move Saturn © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Step 6 © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Turn Command Do planets move in straight line or around the sun? Planets revolve around the sun We will learn how to revolve our 2 planets around the sun by using “Turn” command. © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Turn Command © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Step 7 © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Rocket Create a new sprite. This sprite should be hidden in the beginning It should only appear once space is pressed Also add a new backdrop (planets) © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Rocket Sprite © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Hide Other Sprites Task A: Hide Other Sprites © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Moving the Rocket Task B: Launch the rocket, make it move to the top, then in the stars. The rocket moves only when you click on it. © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. Homework Repeat the same with 2 more planets © LaunchPad Learning Inc. All rights reserved.

© LaunchPad Learning Inc. All rights reserved. That’s it for today Thank You !!!! © LaunchPad Learning Inc. All rights reserved.