Lesson 1 Introduction to Scratch Basic blocks

Slides:



Advertisements
Similar presentations
Sprite-visual object (actor on the stage) Scripts- Tells actors (sprites) what to do.
Advertisements

Events The brown events block in Scratch starts script's when certain things happen. For example, when the user presses a key, clicks sprites, or uses.
Harry Potter Scratch Game
Digital Art in Scratch part 1 Barb Ericson Georgia Tech Oct 2010.
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 the Cat. Object Oriented Programing Writing computer programs Based on Objects Instead of Actions Based on Data Instead of Logic.
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.
2015 CSE/EGR Summer Camps 1 Computer Science Concepts 1. What is an algorithm? 2. Binary information coding 3. Programming concepts via Scratch Designed.
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.
Digital Art in Scratch part 1 Barb Ericson Georgia Tech May 2011.
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 Another computer programming language Developed by MIT in 2003
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
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.
Using MIT Scratch for Programming and Control Exercise 1 Creating movement Year 11 DTG 2012.
Using MIT Scratch for Programming and Control Exercise 4 – Cat and Dog game Year 9 ICT Autumn Term 2007.
Get Going On ….. Load the word file ‘Glossary’ and complete it. You will have homework today.
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.
Scratch Lesson 1. Creating an account Open the internet browser : Safari or Internet Explorer Type in the URL scratch.mit.edu Using your school computer.
Sprites & Backdrops. Sprites Sprites are the actors that perform the commands in your script. The cat is the default Sprite. Scratch has many other Sprites.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech May 2009.
Index Background Costumes Making object walk smoothly Controlling an object with the keyboard Control an object with the mouse Changing costume when hit.
LEARNING SCRATCH: PRESENTATION 1 PRESENTATION 1: GETTING STARTED 1 Getting Started Today, we'll learn how to use Scratch to make a puppet show.
Scratch Helicopter Game
Movement Game Design (Scratch).
Create a Halloween Computer Game in Scratch
Customise & Explain your game
Game city International
Scratch for Interactivity
What is SCRATCH? Learning Objectives: to explore the Scratch website
Exploring Computer Science – Lesson 4-5
Scratch 2.0: Introduction
Scratch – Simple Programming
Scratch I - Overview.
Computing Year 7 - Unit 2 Programming Basics Scratch Basics.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Introduction to Object-Oriented Programming
Introduction to.
The One Where You Scratch
Learn… Create… Program
Scratch – Simple Programming
Motion and Looks.
Areas of the SCRATCH 2 Screen
Learn… Create… Program
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
(More) Basic blocks Broadcasting messages
Lesson Objectives To understand how to make sprites interact
Flappy bird Demo: Lesson 5 Flappy bird Demo:
Building a Game in Scratch
Introduction to Snap Programming
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Learn… Create… Program
Learn… Create… Program
Scratch: Animation and game programming
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
What is SCRATCH? Learning Objectives: to explore the Scratch website
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
Introducing Scratch and Creating Sprite
CSC 221: Introduction to Programming Fall 2018
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Scratch – Simple Programming
Presentation transcript:

Lesson 1 Introduction to Scratch Basic blocks Using the arrow keys to move your sprite Initialization

Introduction to Scratch 3 areas The stage area The sprites area The scripts/costumes/sounds area

The Stage Area

The Sprites Area Sprites = actors We can have any number of sprites. Each sprite has its own set of scripts, costumes and sounds. Stage (background) You can draw your own sprite.

The Scripts Programming part Drag the blocks to the scripts area

The Costumes Important part of making a live motion

The Sounds

Basic blocks Start Motion blocks Move Setting the position of the sprite When the sprite touches the edge, it bounces (to the opposite direction).

Basic blocks Event block Looks blocks Sound blocks When a ‘key’ is pressed Looks blocks Change costume Sound blocks Play sound

Using the arrow keys to move your sprite

Initialization Reset necessary objects to default value E.g. (starting) position of sprites Counting variables (will be taught next lesson) etc.

Exercise 1 Your task: The “Cat” sprite moves under the user’s control using arrow keys. The costume of the Cat changes so that it looks like walking. Set the starting position of the Cat (initialization). The Cat “meow”s (play sound) when it goes to the right.