graphic organizers in the form of illustrations or images displayed in sequence for the purpose of...

25
MODULE 7

Upload: egbert-harvey

Post on 17-Dec-2015

225 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

MODULE 7

Page 2: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

STORY BOARD graphic organizers in the form of

illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion graphic or video game sequence.

visual layout of events as they are to be seen by the player or viewer

Helps to make the games because it is cheaper to make changes to a storyboard than a programmed piece of software

Page 3: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

Vert

ical:

Y-A

xis

Page 4: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

MAKE YOUR OWN STORYBOARD You will create a scrolling landscape. Each Box will be a 480x360 sprite (it takes up the

entire screen) Each cell needs to be labeled, starting with Sprite 0 Create 18-24 sprites (be creative)

Sprite 4

Draw Here

Sprite 0 Sprite 1 Sprite 2

Sprite 5Sprite 3

Draw Here Draw Here

Draw HereDraw HereDraw Here

Page 5: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

DRAW YOUR SPRITES FROM STORYBOARD Draw your sprites from your storyboard Make them colorful. WARNING: make sure each cell is

480x380 pixels or your program will not work.

Name your sprites accurately with our naming convention from the storyboard.

Page 6: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PROGRAM YOUR SPRITE TO

SCROLL

Page 7: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

SCROLLING scrolling is sliding text, images or video across a monitor or display

vertically or horizontally

Page 8: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

SCROLLING FUNCTION• This variable will be what controls the scrolling• ScrollX is the variable that sets the location of each scrolling sprite• Left and Right arrows change the value• Place it on the Stage

Page 9: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

SCROLLX VALUES To appear to

be moving right, the sprite needs to move left; use a negative value

To appear to be moving left, the sprite needs to move left; use a positive value

(+5)(-5)

Page 10: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

ABS IS ABSOLUTE VALUE This is the value of any positive or

negative number. We use this to control if a sprite shows

or hides If a sprites X position is -240, then its

ABS is 240. If a sprites X position is 240, then its

ABS is 240.

Page 11: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

FUNCTIONS FOR EVERY SPRITES0-24

Name: SCROLLX Multiplier--This function received user input and moves the sprite left and right--This formula changes for each sprite

Name: ABS Hider--This function determines if we want to hide our sprite or show it--This does NOT change for each sprite

Page 12: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

X-Axis--This is an example how to the ScrollX Multiplier changes for each sprite --The number of the sprite is what you multiply it by

Page 13: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

GET TO WORK Don’t talk to me. I am a busy person. You need to watch the movies Print Screen the video Paste the screen shot into Paint Copy the code Copy the code Copy the code

Page 14: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

MODULE 7 NOTES PLAYER

SPRITE

Page 15: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

INTERACTIVELook and Feel of your game

"look" refers to its visual design Your scrolling Animations Graphics

“feel" refers to its interactivity:user controlssound effects Interaction with the world

Page 16: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PROGRAM YOUR SPRITE The model uses a bat, but you can use

different characters Name your sprite: Player

Page 17: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PLAYER CONTROLS How the Player

crashes Animation Moving around

the screen (interaction)

Watch the video

Page 18: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PLAYER INTERACTION This controls the Player’s direction it

faces Just makes the interaction have a better

feel

Page 19: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PLAYER TIMER This is a timer that

allows the player a certain amount of time to get all of the pick ups before the game is over

Page 20: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PICK UPS AND GAME OVER

Page 21: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PICK UPS These are Interactive items that the

player can gather They can be for the following:

HealthTimePointsAmmoOr whatever you want

Name your pick up sprites the following:Pickup# (for example: Pickup1)

Page 22: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PICKUP SCROLLX Places the pick

up at a certain location on your storyboard

Changes score and has some animation when hitting the player

Page 23: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

PICKUP ABS HIDER Determines if our

Pickup sprite is hidden or if it shows

Make sure you turn off the Forever loop so your program will not slow down the game

Page 24: graphic organizers in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a motion picture, animation, motion

GAME OVER SPRITE Interactive: You

always need to have a clear signal to the user that the game is over

Sprite hides until it received a broadcast to show and then spins around to look awesome