Digital Art in Scratch part 1 Barb Ericson Georgia Tech May 2011.

Slides:



Advertisements
Similar presentations
Create a Simple Game in Scratch
Advertisements

Create a Simple Game in Scratch
Scratch is a Visual Programming Language
Mission Technology Introduction to Scratch! June 2007.
Pong! “The oldest commercially available game in history” Resources created from the video tutorials provided by David Phillips on
Harry Potter Scratch Game
Adventures in Animation Harry Potter Game Pranali Choubal Kunal Shaw Barb Ericson Dec 2007.
Write Your First Computer Game!. Coding: Programming Languages Just like you can speak Chinese to someone who understands Chinese to tell them what to.
Racing Car Game Using the keys to control a sprite.
Madlib-Input, Strings, and Lists in Scratch Barb Ericson Georgia Tech June 2011.
Extending the Pong Example Barb Ericson Georgia Tech June 2011.
Digital Art in Scratch part 1 Barb Ericson Georgia Tech Oct 2010.
Adventures in Animation Introduction to Scratch! Michelle Venable-Foster June 2006.
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.
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.
Introduction to Scratch!
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.
Introducing Scratch the Cat
How to make a Shooting Target game in Scratch!. WE ARE GOING TO MAKE A TARGET GAME. This game will have: A Target that will move when clicked. A Timer.
Exploring Computer Science 2/9/15 2/9Moving Scratch 2/10Moving Scratch worksheet 2/11 Scratch Baseball Game 2/12Scratch Alphabet Learning Game 2/13Game.
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.
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.
Unit 3 Music and Sound Evangel College S.2 ICT.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech June 2008.
Image #1 Getting Started
Scratch Another computer programming language Developed by MIT in 2003
Making a Sprite Dance Barb Ericson Georgia Tech June 2011.
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
Computer Programming Modeling a Passive Solar Home.
Drawing with the Pen Barb Ericson Georgia Tech June 2011.
First Project: Dance Dance Sprite  Write a dance with your sprite (You pick or create the sprite)  Incorporate as many of the Motion Commands as you.
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.
How to create a sprite Delete a sprite (e.g. the cat) by right clicking on it and choosing delete. Go to the bottom right hand corner and choose a new.
How to create a sprite Delete a sprite (e.g. the cat) by right clicking on it and choosing delete. Go to the bottom right hand corner of the stage and.
Using MIT Scratch for Programming and Control Exercise 4 – Cat and Dog game Year 9 ICT Autumn Term 2007.
 SCRATCH is a new programming language that lets you create your own interactive stories, animations, games, music, and art.
Scratch for Interactivity Dr. Ben Schafer Department of Computer Science University of Northern Iowa.
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.
Digital Art in Scratch part 2 Barb Ericson Georgia Tech Nov 2010.
Adventures in Animation Introduction to Scratch! Michelle Venable-Foster Barb Ericson Dec 2007.
1 CSC 221: Computer Programming I Fall 2009 Introduction to programming in Scratch  animation sprites  motion, control & sensing  costume changes 
Computer Programming Modeling a Passive Solar Home.
Madlib-Input, Strings, and Lists in Scratch Barb Ericson Georgia Tech.
Computer Programming with Scratch JAOIT 8. Scratch Scratch is a programming language that makes it easy to create your own interactive stories, animations,
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.
Teaching Kids Programming with Chromebook Digital Convergence Lab, NIU.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech May 2009.
Introducing Scratch Learning resources for the implementation of the scenario
Play Road Game to understand the game Click on each sprite to understand its script Think about a different place that a sprite would have to get across.
© it’sLearning 365 Limited | Screen 1 FLASH enabled How to use me : Teachers Notes Useful Web Link Ne xt Pa ge Ne xt Pa ge Navigate.
Using MIT Scratch for Programming and Control Programming 9.
Review for Final June 13, 2016.
Create a Halloween Computer Game in Scratch
Commands in Scratch.mit.edu
Scratch for Interactivity
Madlib-Input, Strings, and Lists 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.
© A+ Computer Science -
Spanish Mad libs with Scratch
Understanding the Geometric Shape Code
Scratch for Interactivity
Go to =>
Image #1 Getting Started
Getting Started with Scratch
Creating a Simple Game in Scratch
CSC 221: Introduction to Programming Fall 2018
Using MIT Scratch for Programming and Control Exercise 5 – Drawing with Scratch Year 9 ICT Autumn Term 2007.
Presentation transcript:

Digital Art in Scratch part 1 Barb Ericson Georgia Tech May 2011

Goals Learn about –Drawing sprites –Using the pen blocks: stamp –Event handling –Loops

Project Description We will draw a simple shape (a plus sign) and use it to make art. –By stamping the shape as we follow the mouse –We will change the costume (color) we draw with when the user presses the space key

Big Picture Delete cat sprite Paint the background for the stage Paint the sprite that you will draw with –the plus sign Copy the costume for the sprite and change the color Program the sprite –To follow the mouse and leave a copy –To change costume when the space key is pressed

Delete cat sprite To delete the cat –Click the scissors –Click the cat Or right click on the cat and select delete

Painting the background Click on the stage icon in the sprites area Select the backgrounds tab –Click Edit

Setting background color Select a color –Using the eye dropper tool Select the fill tool –Bucket Fill the stage with the color

Painting the Sprite Click on star with paintbrush –To paint a sprite Select a color –Use the eye dropper Paint the sprite –Use the line tool

Copy the costume Click on the costume tab –For Sprite1 Click on Copy –To copy the costume Click on Edit

Change the Color Pick a color –Use the eye dropper Change the color –Use the fill tool You may want to grow the sprite first to make it easier to fill it Then shrink it after

Programming Steps When the green flag is clicked do all set-up –Clear the drawing area –Maybe set the starting costume –Then Loop forever Move to the current cursor location Stamp the shape –Draw a copy of it

Set-up When the green flag is clicked –Clear the drawing area

Follow mouse and stamp Forever - Control –Go to the cursor's x and y location - Motion Drag out mouse x and mouse y -Sensing –Stamp a copy of the sprite - Pen

Change Costume When the space key is pressed- Control –Switch to next costume - Looks

Challenges When the green flag is clicked –Set the starting position and costume Add other costumes with other colors Add a way to clear the drawing –Press a key or add a button sprite Try drawing with other shapes Add a turn

Concept Summary Backgrounds –Can be painted Sprites –Can be painted and copied and then edited Forever loops –repeat all the commands inside of them one at a time until the script is stopped or all scripts are stopped Events –Respond to something like the green flag being clicked or the space key being pressed