Hour of Code.

Slides:



Advertisements
Similar presentations
Programming Concept #2 Iteration. Is just a fancy way of saying that you would like something to repeat more than one time. It is used in any modern programming.
Advertisements

Scratch Programming Session 6 of 10 If-then-else statements interactions Final projects specifications.
Racing Car Game Using the keys to control a sprite.
B.A. (Mahayana Studies) Introduction to Computer Science November March Logo (Part 1) An introduction to Logo: drawing, moving,
Digital Art in Scratch part 1 Barb Ericson Georgia Tech Oct 2010.
What is Scratch? Scratch as Logo Dr. Ben Schafer Department of Computer Science University of Northern Iowa.
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.
Introduction to.
CATCH SCRATCH! Programming from Scratch. Remember Scratch?
Code Club Session 2 Dance Party. What will we learn ?  How to change the background  How to create animations  How to make objects talk to each other.
Algorithms In general algorithms is a name given to a defined set of steps used to complete a task. For example to make a cup of tea you would fill the.
Using MIT Scratch for Programming and Control Exercise 3 Ball Game Year 9 ICT Autumn Term 2007.
Scratch – Simple Programming
Introducing Scratch the Cat
Slide 1 Graphics Slide 2 Graphics A graphics package is a general purpose package used to draw pictures (graphics). Once produced, these can be saved.
Scratch Programming Lesson 2 First glance to programming logic.
Institute for Personal Robots in Education (IPRE)‏ CSC 170 Computing: Science and Creativity.
Introduction to Scratch Scratch as Logo Dr. Ben Schafer Department of Computer Science University of Northern Iowa.
Moving Sprites in Scratch Exploring Computer Science – Lesson 4-4.
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.
Introduction to 3d Modeling Simple Polygon Modeling Using 3D Max
Scratch Another computer programming language Developed by MIT in 2003
Computer Programming Modeling a Passive Solar Home.
1 Project designed and created by M. Shajith Kumar.
Unit 1 Introduction to Evangel College S.2 ICT.
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.
Today's Ninja Challenge: Write Your First Computer Game!
ICT/COMPUTING RULES Only use software allowed by the teacher
Computer Programming Modeling a Passive Solar Home.
Intro CS – Loops, making animations & films Lesson Plan 3.
Using Logo to explore spiral patterns. Paul Broadbent Spiral patterns This is a (1,2,3) spiral path. It repeats lines of three.
Computer Programming.
Broadcasting (Adding a new level)
Intro CS – Loops, making animations & films
Intro CS – Loops & Creating Shapes
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.
© A+ Computer Science -
Scratch – Simple Programming
Games Programming in Scratch
Scratch – Simple Programming
Evgeniya Gushchina EPAM e-kids volunteer computer science teacher
Scratch I - Overview.
Learning to program with Logo
Gaming with conditionals
Introduction to Object-Oriented Programming
Introduction to.
Introduction to Coding
The One Where You Scratch
Scratch – Simple Programming
Motion and Looks.
Module 2 Lesson 3 Over and Over Again
Programming Basics - RobotC
Mod 2 Lesson 2 Repeating Debugging
Mod 2 Lesson 2 Repeating with loops
Scratch Summer Session 2
Explain what touch develop is to your students:
MICCA SCRATCH Workshop
Code to Enhance Learning
Getting Started with Scratch
Recap the basics Lesson 1.
Instructions Maybe this should just be called “A Question of Sport”... Quickly get into teams of 3 or 4. 1 person collect a bundle of paper & pen from.
© LaunchPad Learning Inc. All rights reserved.
Module 2 Lesson 3 Over and Over Again
Mod 2 Lesson 2 Repeating with loops
Module 2 Lesson 3 Over and Over Again
Animate a Sprite. By M, M and C P6
Scratch – Simple Programming
Presentation transcript:

Hour of Code

Code Stars

How can I program a computer? Requires “talking” to the computer Collection of simple instructions to complete one larger task Languages to translate “English” into “Computer Language”

Scratch Scratch is a program built to very simply process computer language. Commands are already in place, the user orders those commands to complete an action. ShallWeLearn | http://shallwelearn.com

What is a Sprite? A Sprite is a character. The purpose of Scratch is to make your character perform some action: Walk across the screen Rotate Speak Maybe even dance!

Open Scratch Programming Go to http://scratch.mit.edu Click “Try It Out”

Walk through the Step-by-Step Tutorial

What else can we do?

Make Sprite Walk

Make Sprite Walk Animation works by making repeated simple actions Need to “move” over and over again Use a repeat tool in the Control Menu Problems making Sprite Walk?

Make Sprite Turn Around

Make Sprite Turn Around Right now, Sprite keeps walking off the edge. Problem Solve: When does sprite need to turn around? After how many moves?

Make Sprite Turn Around Use the “if on edge, bounce” tool in the Motion menu

Make Sprite Box Step

Make Spot Box Step Make repeated “moves” and then turn How many degrees to make a “box”?

Make Sprite Box Step Need a repeat loop to “walk” Turn 90 degrees after the move loop Need a forever loop to repeat these actions

Make Sprite Box Step Use the Pen Menu to draw the path of the dance Use the Clear tool Then, use the Pen Down tool

Make Sprite Dance in Any Shape Experiment with the degree of the turn to make other shapes