Lost in Space. Introduction. Step 1: Animating a spaceship. Activity Checklist. You are going to learn how to program your own animation!

Similar documents
Lost in Space. Introduction. Scratch. You are going to learn how to program your own animation! Activity Checklist.

Add in a new balloon sprite, and a suitable stage backdrop.

Making a maze with Scratch

Teacher Cheat Sheet - Game Coding Challenges

In this lesson you are going to create a drawing program similar to Windows Paint. 1. Start with a new project and remove the default cat sprite.

Introduction to Scratch Programming v1.4 (Second Ed) Lesson 6 Calculator

ONE HOUR ANIMATION. Will you be a Scratcher upon completion of this session? Definitely. Learn how to write a basic script to animate a sprite.

ICS 61 Game Systems and Design Introduction to Scratch

S3 Scratch Programming

With the Photo-face project learners can incorporate digital media digital photos, and then transform these images in creative and surprising ways.

Animate a Character Cards

AN INTRODUCTION TO SCRATCH (2) PROGRAMMING

Meet the Cast. The Cosmic Defenders: Gobo, Fabu, and Pele The Cosmic Defenders are transdimensional

Lesson 3 Creating and Using Graphics

We created a few different effects and animations using this technique as applied to clones.

Teaching Kids to Program. Lesson Plan: Catch the Ball

All Blocks of Scratch

M O T I O N A N D D R A W I N G

SCRATCH. Introduction to creative computing with Scratch 2.0

Scratch Lesson 2: Movies Made From Scratch Lesson Framework

Make a game in which you play the notes of a song as they scroll down the stage.

micro:bit game controller with Scratch

Lineup. Introduction. What you will need. Import your costumes. What you will make. What you will learn. Hardware. Software

Animate a Name Cards

INVIGILATED BY MARKED BY MARKS TALLIED BY

Quick Reference Tables

You are going to code your micro:bit to read the future! Simply ask the micro:bit a quesition, and press a button to find out the answer!

Key Stage 2 Scratch, Python and Kodu (Beginners)

Crossley Fields - Computing Vocabulary

Mailman Max. The postcode is a great way to work out the next sorting office a letter should go to, so you ll use that.

Simple coding for total beginners Book of Scratch

Drawing Tools. Drawing a Rectangle

SCRATCH MODULE 3: NUMBER CONVERSIONS

You will be writing code in the Python programming language, which you may have learnt in the Python module.

You are going to learn how to make a timer, so that you can use it to challenge your friends!

COMP : Practical 6 Buttons and First Script Instructions

Computer Science Concepts in Scratch

Using Flash Animation Basics

Computer Science Concepts in Scratch

CPS111 Victory Thru Scratch Lab

Digital Technologies in focus:

Anjuli Kannan. Google Earth Driving Simulators (3:00-7:00)

Scratch Programming for Primary School Teachers Quiz Game

Adobe Flash CS3 Reference Flash CS3 Application Window

Scratch. Creative Computing

Smoother Graphics Taking Control of Painting the Screen

What are different approaches of Computer Art? How can computation create art? 9/17/12. Human uses computer to modify digital images

The Beauty and Joy of Computing 1 Lab Exercise 1: Introduction to Scratch/BYOB - Animations and Communication

The City School PAF Chapter Comprehensive Worksheet April 2018 ICTech Class 7 Candidate Name: Index Number: Section: Branch/Campus: Date:

TTS Scratch Controller. Teacher Guide. 1 TTS Scratch Controller - Teacher Guide. Product Code: EL00530

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements?

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch

SCRATCH PROGRAMMING. Lesson 7: Create a Scratch Cartoon Animation

Creating a prezi. Setting up and choosing a template. Go to Sign up if you do not already have an account.

Introduction to Flash - Creating a Motion Tween

IT82: Multimedia Macromedia Director Practical 1

Creating a Histogram Creating a Histogram

Scratch Lesson 11: Mini Mario Game Part II - Sprites

Exit: These control how the object exits the slide. For example, with the Fade animation the object will simply fade away.

Cartoon Animation Tutorial

Downloaded from

PocketLab and Scratch STEM Coding Challenge

The Environment. Scratch Programming. The Environment. The Environment. The Environment. The Environment. Lesson 1: Introduction THE STAGE

Creating Digital Illustrations for Your Research Workshop III Basic Illustration Demo

In this lesson you will learn: How to capture the input from the user. How to write programs using variables and lists. Athletics Swimming Gymnastics

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW

SCRATCH BUILDER R Q R O B O T C O D I N G G U I D E

This is a separate window in the software so if you wish to return to the main screen, just close this window by clicking X in the upper right corner.

Pong in Unity a basic Intro

Not For Sale. Glossary

VISUAL PROGRAMMING BY SCRATCH

Interactive Tourist Map

Installing a Custom AutoCAD Toolbar (CUI interface)

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics

6D Embroidery Software - Pretty Paisleys

Rev. A 02/02/2016 Downers Grove Public Library Page 1 of 50

Your First Windows Form

PowerPoint 2003 for Windows Version Technology Workshop: Basic PowerPoint Animation for Music Presentations

This lesson introduces Blender, covering the tools and concepts necessary to set up a minimal scene in virtual 3D space.

ASCII Art. Introduction: Python

Learning Microsoft Word By Greg Bowden. Chapter 10. Drawing Tools. Guided Computer Tutorials

TerminalFOUR Version 8 Change Guide

Adobe illustrator Introduction

Blender Lesson Ceramic Bowl

Measuring in Pixels with Scratch

Outlook Web Access. In the next step, enter your address and password to gain access to your Outlook Web Access account.

Interactive Tourist Map

UNIVERSITY OF SHEFFIELD SYMPODIUM USER GUIDE (2011)

Tangents. In this tutorial we are going to take a look at how tangents can affect an animation.

FLASH ANIMATION TUTORIAL

Workshop BOND UNIVERSITY. Bachelor of Interactive Multimedia and Design. Asteroids

Motion Creating Animation with Behaviors

Function General description Online version

Tower Drawing. Learning how to combine shapes and lines

ILLUSTRATOR. Introduction to Adobe Illustrator. You will;

Getting Started with Crazy Talk 6

REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB!

The Essentials of Alice (Bunny) By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008

Node-RED dashboard User Manual Getting started

Transcription:

Lost in Space Introduction You are going to learn how to program your own animation! Step 1: Animating a spaceship Let s make a spaceship that flies towards the Earth! Activity Checklist Start a new Scratch project, and delete the cat sprite so that your project is empty. You can find the online Scratch editor at jumpto.cc/scratch-new. Add Spaceship and Earth sprites to your stage. You should also add the Stars backdrop to your stage. This is how your stage should look: 1

Click on your new spaceship sprite, and click the Costumes tab. Use the arrow tool to select the image. Then click on the circular rotate handle, and rotate the image until it is on its side. Add this code to your spaceship sprite: 2

Change the numbers in the code blocks, so that the code is exactly the same as in the image above. If you click on the code blocks to run the code, you should see the spaceship speak, turn and move towards the centre of the stage. The screen position x:(0) y:(0) is the center of the stage. A position like x:(-150) y: (-150) is towards the bottom-left of the stage, and a position like x:(150) y:(150) is near the top-right. 3

If you need to know the coordinates of a position on the stage, move the mouse to the position you want and make a note of the coordinates, which are displayed below the stage. Try out your animation, by clicking on the green flag just above the stage. 4

Challenge: Improving your animation Can you change the numbers in your animation code, so that: + The spaceship moves until it touches the Earth? + The spaceship moves more slowly towards the Earth? You ll need to change the numbers in this block: glide 1 secs to x: 0 y: 0 Save your project Step 2: Animating using loops Another way of animating the spaceship is to tell it to move a small amount, lots of times. Activity Checklist Delete the glide block from your code, by right-clicking on the block and clicking delete. You can also delete code by dragging it off the script area, back into the code blocks area. Once you ve removed your code, add this code instead: 5

The repeat block is used to repeat something lots of times, and is also known as a loop. If you click the flag to try out this new code, you ll see that it does pretty much the same thing as before. You can add more code to your loop, to do interesting things. Add the change color effect by 25 block into the loop (from the Looks section), to repeatedly change the colour of the spaceship as it moves: Click the flag to see your new animation. You can also make your spaceship get smaller as it moves towards the Earth. Test out your animation. What happens if you click the flag a second time? Does your spaceship start off the right size? Can you use this block to fix your animation: set size to 100 % Save your project Step 3: Floating Monkey 6

Let s add monkey to your animation, who s lost in space! Activity Checklist Start by adding in the monkey sprite from the library. If you click on your new monkey sprite and then click Costumes, you can edit how the monkey looks. Click the Ellipse tool, and draw a white space helmet around the monkey s head. Now click Scripts, and add this code to the monkey, so that it spins slowly in a circle forever: when clicked forever turn 1 degrees The forever block is another loop, but this time one that never ends. Click the flag to test your monkey. You ll have to click the stop button (next to the flag) to end this animation. 7

Step 4: Bouncing Asteroids Let s add some floating space-rock to your animation. Activity Checklist Add a rock sprite to your animation. Add this code to your rock, to make it bounce around the stage: when clicked point towards Earth forever move 2 steps if on edge, bounce Click the flag to test your rock. Does it bounce around the stage? Step 5: Shining Stars Let s combine loops to make a shining star. 8

Activity Checklist Add a star sprite to your animation Add this code to your star: Click the flag to test out this star animation. What does this code do? Well, the star is made slightly bigger 20 times, and then made slightly smaller 20 times, back to it s original size. These 2 loops are inside a forever loop, so the animation keeps repeating. Save your project 9

Challenge: Make your own animation Stop your space animation, and click File and then New, to start a new project. Use what you ve learnt in this project to make your own animation. It can be anything you like, but try to make your animation match the setting. Here are some examples: Save your project 10