Moving Sprites at Random

Slides:



Advertisements
Similar presentations
Instructions Go to:- insert, picture, clip art & select a picture of your choice using the search text on the right of the screen. Click on it once &
Advertisements

Features and How-to’s Introduction to Computers Mr. Jain
My Car Your Name Hour Place a picture of your car as the background.
Designing a Webpage (from the very start). Background of HTML Don’t download a complete page. Download set of instructions (HTML): –Put this writing here…
1.Click and type in the text boxes on the next slide to add the names of your choice. 2.Click on File…Save As… and choose the.ppsx or.pps format (PowerPoint.
1.Click and type in the text boxes on the next slide to add the names of your choice. 2.Click on File…Save As… and choose the.ppsx or.pps format (PowerPoint.
Algebra Tiles How do I use algebra tiles to represent expression? By: Type your name here.
Created by Mrs. G for the ecatechlab.weebly.com
Using Coordinate Geometry to Create Moving Images In unit 29 we created a simple drawing for the background of a children’s game. We are going to start.
PROCESSING. * Java SDK * downloads/jdk7-downloads html
How to link to a website in PowerPoint Bryan Mills.
Template slide 1: presentation title goes here Insert date, month, year here Insert presenter name here – please don’t write in the grey box below.
Ecology PowerPoint Directions One person from your group log on for each member of your group. Each person make 5 blank slides DO NOT PUT ANY BACKGROUND.
The WORST PowerPoint Ever Topic: My Favorite ___________. By: Your Name Give this slide colors that do NOT go together and cannot be seen well in a presentation.
Electronic Notetaking Take your notes directly into the slide. Each slide reflects a different point or idea. You can copy and paste, or put the ideas.
Programming for Artists ART 315 Dr. J. R. Parker Art/Digital Media Lab Lec 10 Fall 2010.
Creating Art With Simple Shapes By carefully implementing simple shapes to an HTML canvas we can create useful graphics. With enough time, lines, ellipses.
 How to create a quiz and teacher code. 1)First find a video on Youtube or other video hosting website and copy the embed code (Video embed code pictured.
Space Web Quest Click on the picture of the sun on slide 2 What year did the first man step on the moon? Answer What was his name? Answer.
Go Animate Tutorial. Home Sign Up Click Sign Up.
TYPE YOUR STORY TITLE HERE Type your name here PUT A PICTURE HERE.
Click your mouse for next slide Adding Text Click in any text box Type in your text OR.
PowerPoint presentation title Presenter’s name and date Put a visual here.
Intro to Drafting Questions Please answer the following questions. One answer per a slide. Make sure to put all answers in your own words! Please provide.
Teacher’s Page: Life as a Butterfly 7 th Grade GLE: 6 Discuss the life cycle of the butterfly. Print out the next slide for the students to use to gather.
How to use keepsy By Trista. keepsy keepsy is an online photo album organizer/ creator that you can customize with your own pictures. You can choose the.
Science Fair PowerPoint Presentation
City PowerPoint Presentations
Directions 1.Teachers need save this PowerPoint on the Student Server. 2.Have the students open the template from the Student Server and click on Slide.
Vehicle Random Slide Show Menu Please select slide show below: Words & Pictures Set 1Set 2Set 3Set 4Set 5 Words only Set 1Set 2Set 3Set 4Set 5 Pictures.
Natural Selection Simulation Before you begin, watch the video “Genetic Variation: The Basis for Natural Selection” Learning objectives Students are expected.
Children’s World War II Museum Proposal By: YOU NAME HERE.
ILearn: Using Microsoft Word to Organize Our Research Subject: Social Studies (E.4) Session 4 of 8.
THIS IS A DEFAULT/ GENERIC TEMPLATE. CHANGE THE BACKGROUND COLOR AND ADD YOUR OWN PICTURES TO MATCH YOUR PRESENTATION. (Insert Title Here) (Insert your.
My Website By : Peter Problems while building website These are the problems I had to overcome while building my site. Getting pictures to be the same.
HCR 240 Week 9 Final Project Putting It All Together Complete several activities using Medisoft™ for the final project,. Take screenshots and copy and.
Module 2: Investigation 3
Material/Non-Material Culture
TECH 104 – Technical Graphics Communication
家居物品 Random Slide Show Menu
Slide 1 Slide 2 Slide 3 Birth: Death: Family:
Your First & Last Name (Make sure you capitalize your first and last name!) Follow these instructions: 1. Center your name on the slide (use the “Centered”
Animal Random Slide Show Menu
Writing about: Famous People 11/18/2018
Using the Multiple Choice Template
Powerpoint Review.
PUT POWERPOINT TITLE HERE
Food(食物) Random Slide Show Menu
Food Random Slide Show Menu
Extra Drawing Practice in Java Script
Introduction to scratch animation
PUT POWERPOINT TITLE HERE
10 SCRATCH bLOCKS lesson 1 10 Blocks.
Google Earth Scavenger Hunt
PowerPoint Slide Shuffler
park By using “Slide Show” “Custom Slide Show”,
Hyperlinks 1 2.
Create an array using PowerPoint
For this assignment, copy and past the XHTML to a notepad file with the .html extension. Then add the code I ask for to complete the problems.
Title: EVM World 2016 Name of Presenter Company
Title: Name of Presenter Company and Telephone number Date:
Iteration Learning Objective: to be able to design algorithms that use iteration.
Multimedia – Rex Seigler Technology Facilitator
Mod 5 Lesson 1 Scratch Cards: Easy
5 Points Skills Required:
Random Slides From This PowerPoint Show
5 Points Skills Required:
How to use Powerpoint (this is a title slide- you should put your title, name, date, and period here) Before you START changing font and background put.
park By using “Slide Show” “Custom Slide Show”,
Learning Objective: to be able to design programs that use iteration.
Presentation transcript:

Moving Sprites at Random Page 1 Moving Sprites at Random Page 2: Part 1 of assignment Page 3: Instructions for Part 2 of assignment Page 4: Put pictures here Page 5: Code to copy and paste

Paste (ctlr v) 5 screenshots below of 5 different sprites. Page 2

Page 3 Instructions Draw a scene with grass and a tree (look at the last page to copy and paste the code for the scene). Put a Mouse Sprite on the grass at any “x location” of your choice. Put a Bee Sprite in the sky at any “y location” of your choice. Take a screenshot and put it on the PowerPoint slide. 5. Repeat 5 times so that you have the same picture with the Bee and Mouse Sprites at different locations in each picture.

Paste (ctlr v) your 5 screenshots below Page 4

Copy and Paste this Page 5 // Draw Background background("blue"); fill("green"); noStroke(); rect(0, 350, 400, 50); fill("brown"); rect(50, 200, 50, 150) ; ellipse(75, 200, 150, 150);