Exploring Computer Science Lesson 4-14

Slides:



Advertisements
Similar presentations
Create a Simple Game in Scratch
Advertisements

Create a Simple Game in Scratch
Scratch is a Visual Programming Language
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.
CATCH SCRATCH! Programming from Scratch. Remember Scratch?
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.
Exploring Computer Science 2/23/15 2/23 Develop a Scratch story project -Brainstorming 2/24 Develop a Scratch story project –Developing 2/25 Develop a.
Moving Sprites in Scratch Exploring Computer Science – Lesson 4-4.
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.
Scratch Dialogues Exploring Computer Science – Lesson 4-3.
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
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
Variables and Random Numbers Computer App Session 4.
Web Site Evaluation Exploring Computer Science – Lesson 1-3.
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.
Moving Sprites in Scratch Exploring Computer Science – Lesson 4-4.
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.
Making a Flappy Birds Game PART 2 – MAKING THE BIRD FLAP AND FALL – AND DEVELOPING THE GAME FURTHER (ADDING ADDITIONAL CHARACTERS, GOODIES, ENEMIES AND.
Randomness Exploring Computer Science Lesson 4-10 – Part 2.
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.
Review for Final June 13, 2016.
Movement Game Design (Scratch).
Create a Halloween Computer Game in Scratch
Module 1: Investigation 2 Repeating and Alternating Patterns
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.
Design Journal Name.
Exploring Computer Science – Lesson 4-5
Exploring Computer Science Lesson 4-13
Exploring Computer Science Lesson 4-14
Exploring Computer Science Lesson 4-10 – Part 1
Programming Final Project
Scratch – Simple Programming
A Recipe For Pong Across a network!.
Exploring Computer Science Lesson 4-14
Scratch – Simple Programming
EXPLORING COMPUTER SCIENCE
Programming Final Project
Lesson 1 Introduction to Scratch Basic blocks
And and or…and RANDOMNESS
Objective of the lesson
Exploring Computer Science Lesson 4-11
Lesson Objectives To understand how to make sprites interact
Moving Sprites in Scratch
Exploring Computer Science Lesson 4-13
Exploring Computer Science – Lesson 4-5
Exploring Computer Science – Lesson 4-3
Conditionals Exploring Computer Science Lesson 4-9.
Flappy bird Demo: Lesson 5 Flappy bird Demo:
Exploring Computer Science Lesson 4-8
Code to Enhance Learning
Image #1 Getting Started
Building a Game in Scratch
Game Over Module 4 Lesson 2.
Exploring Computer Science Lesson 4-12
Getting Started with Scratch
Exploring Computer Science Lesson 4-10 – Part 2
Exploring Computer Science Lesson 4-13
Creating a Simple Game in Scratch
CSC 221: Introduction to Programming Fall 2018
Exploring Computer Science Lesson 4-12
Exploring Computer Science Lesson 4-8
Exploring Computer Science Lesson 4-10 – Part 1
Scratch – Simple Programming
Presentation transcript:

Exploring Computer Science Lesson 4-14 Investigating Games Exploring Computer Science Lesson 4-14

Objectives The students will be able to: Investigate two different types of games. Get ideas for their final projects.

Monkey Game Download monkey.sb from the web site and play the game. What blocks do you think decide what x and y the banana should change to? What are the names of the orange blocks under Variables? What block(s) are used to change the score? Monkey Game Download monkey.sb from the web site and play the game. In your journals answer these questions: What blocks make the monkey respond to the keys? Does the banana always appear in the same place?

Finish the Monkey Game The game never ends. Add code to have the game end when the score is 9. When the game is over: All Sprites are hidden. Change the background Fix “When the green flag is clicked to: Change the background Unhide Sprites Reset Score

Pinball Game 4. How do you think the ball determines which direction to bounce? 5. What’s the purpose of the purple line at the very bottom of the game? 6. What other features do think would make this game better Download pinball.sb. In your Journals answer these questions: 1. Look at the scripts for the pinball. How is gravity simulated? 2. How does the ball know when to “bounce” off of something? 3. Does the ball always bounce the same way when it hits something?

Finish the Pinball Game Modify the game to keep track of points and show it to me. Write down what changes you made.