Review Scene Management (Scene, Layer, Director) Sounds Menus Sprites & Actions.

Slides:



Advertisements
Similar presentations
A guide to using PowerPoint
Advertisements

Holdings Management Overview
Video Game Design Lesson 1. Game Designer Person involved in the development of a video game Person involved in the development of a video game Usually.
 This is a very large presentation which contains lots of information.  However, you could sum up the contents simply like this: › What makes up a.
Plan a Presentation. Navigating in Slide Show View 1. Slide controls for navigation appear at the lower left side during a slide show. 2.Previewing the.
PowerPoint Scavenger Hunt Lauren Davis EDTD 3011 A Summer 2007.
Create a Narrated Story with PowerPoint. Basics Enter Text. (Click in the text box and start typing. If a text box is not visible, go to Insert > Text.
Unity 3D game IDE 1.  Unity is a multi-platform, integrated IDE for scripting games, and working with 3D virtual worlds  Including:  Game engine ▪
Chapter 17 Putting It All Together. Viewing the Preloader To view the preloader, 1.CTRL-Enter to test the movie. 2.View > Simulate Download.
CHAPTER 1 XNA Game Studio 4.0. Your First Project A computer game is not just a program—it is also lots of other bits and pieces that make playing the.
© 2011 Delmar, Cengage Learning Chapter 11 Adding Media and Interactivity with Flash and Spry.
Xcode Presentation Tom Pletzke. Creating App from template Launch Xcode Select Tabbed Application.
XP Tutorial 5 Buttons, Behaviors, and Sounds. XP New Perspectives on Macromedia Flash MX Buttons Interactive means that the user has some level.
CHAPTER 4 Images XNA Game Studio 4.0. Objectives Find out how the Content Manager lets you add pictures to Microsoft XNA games. Discover how pictures.
How to Make a PowerPoint Presentation (Using PowerPoint)
Introduction to TouchDevelop
Case Study: Using Macromedia Director
Vera S. Weber.  Slide: each “page” of a presentation is known as a slide  Objects: Slide are made up of objects; text, images, videos, charts, and sounds.
10 Adding Interactivity to a Web Site Section 10.1 Define scripting Summarize interactivity design guidelines Identify scripting languages Compare common.
Section 17.1 Add an audio file using HTML Create a form using HTML Add text boxes using HTML Add radio buttons and check boxes using HTML Add a pull-down.
Creating Buttons – Lesson 71 Creating Buttons Lesson 7.
Teach Yourself Windows 95 Module 4: Using Microsoft Exchange for Faxes and .
Project 2 Web Page Design Creating and Editing a Web Page Pages
Flash CS 5 Interface BY NSCHEWCZYK | ©2012. MENU BAR A bar at the top of the window. It lists menu options including: File, Edit, View, Insert, Modify,
Course Summary Xcode & iPhone Simulator
Sprites Actions/Particles/Sound Revisit the 'flying saucer' sprite: Again add it to the game Implement Chipmunk Physics collision feedback with missiles.
Guide to Programming with Python Chapter Twelve Sound, Animation, and Program Development: The Astrocrash Game.
Guide to Programming with Python Week 15 Chapter Twelve Sound, Animation, and Program Development: The Astrocrash Game.
By: Nakul and Vishal.  We made our RPG game through a website called CreateorConquer.com that allows us to make a game by giving the website the required.
 You will be creating a cartoon in Adobe Illustrator using the paintbrush tool  You will learn about layers, different brushes, and different strokes.
Chipmunk Physics Remember that we talked about this a bit when we did collision handlers for the space ship integration task (SpritesActionsPhysicsSound).
Word 2003 The Word Screen. Word 2003 Screen File Menu –Holds the options for creating a new document, opening a document, saving a document, printing.
Sound Effects The library Cocosdenshion subproject of cocos2d-iphone targeted at game audio needs Sound effects can be loaded at application startup, so.
Simple Scene Management a layer has the size of the device screen it defines appearance and behavior a scene is composed of one or more layers app transitions.
Video in Macromedia Flash (Optional) – Lesson 121 Video in Macromedia Flash (Optional) Lesson 12.
Galactic Mail Part 2. Winning and Losing Exploding Asteroids Including Scoring Adding Levels And more.
Game Maker Evil Clutches.
Get Going On ….. Load the word file ‘Glossary’ and complete it. You will have homework today.
How to Make a Power Point Go to Slide 2. (You can get there by clicking on slide 2 in Normal VIEW.)
Game Development Process ITP 160 Original Game Assignments.
CHAPTER 4 Fragments ActionBar Menus. Explore how to build applications that use an ActionBar and Fragments Understand the Fragment lifecycle Learn to.
Microsoft PowerPoint 2010 Lesson 7: Plan a Presentation.
Creating cast members  Using tool palette window that can be selected from window menu.  The following objects can be created: Push buttons, Radio buttons,
Title of your site Title of your page Text and images arranged on the page in the design of your choice. Page 2 Page 3 Page 4 Page 5 Page 6 Page 7 Page.
Game Maker Tutorials Introduction Clickball IntroductionClickball Where is it? Shooting Where is it?Shooting.
Course Summary Xcode & iPhone Simulator
Chapter 3: I Need a Tour Guide (Introduction to Visual Basic 2012)
Creating Visual Effects
For those who hate computers.
Customise & Explain your game
Period 4- Video Gaming Game Salad
Games Programming in Scratch
A Game Pitch Proposal should be brief (e. g
WITH PYGAME ON THE RASPBERRY PI
How to Make a PowerPoint Presentation (Using PowerPoint)
Section 17.1 Section 17.2 Add an audio file using HTML
Review Scene Management (Scene, Layer, Director) Sounds Menus
Games Programming in Scratch
Section 10.1 YOU WILL LEARN TO… Define scripting
MS PowerPoint 2010 Week 2.
Department of Computer Science & Engineering
How to Make a Power Point
Applications Software
Exercise 48 - Skills Adobe Flash CS4 is a software program you use to create animation and applications that range form simple to very complex. Being able.
How to Make a Power Point
First Class User Experience Journey
Introduction to Snap Programming
Using PowerPoint.
Symbian OS Programming
Detecting collisions Susan Ibach | Technical Evangelist
Presentation transcript:

Review Scene Management (Scene, Layer, Director) Sounds Menus Sprites & Actions

Scene a scene is composed of one or more layers app transitions take place through scenes typically one scene is used for the “playable” part of the game others scenes for: title, high scores, options

Layer a layer has the size of the device screen it defines appearance and behavior overlapping layers are typically given different functions (e.g, background, animation, menu)

Director the director takes care of moving between scenes runWithScene tells director to use that scene replaceScene replaces the running scene with another pauseScene puts the current scene on hold for another transitions allow for fancy scene change iphone.org/wiki/doku.php/prog_guide:lesson_3._m enus_and_scenes

Scene Management We added: A layer over the game layer showing game statistics A new scene to go to when the ship hits an asteroid

Sound Effects The library Cocosdenshion subproject of cocos2d-iphone targeted at game audio needs Sound effects can be loaded at application startup, so there's no delay during play

Sound Effects We added sound files to the 'Resources' Group (crtl-click → Add → Existing Files) Preload the.wav files in AsteroidsAppDelegate applicationDidFinishLaunching Play the.wav effects where needed iphone.org/wiki/doku.php/cocosdenshion:faq

Menus In the 'init' method of the AsteroidsScene Layer we: created the menu, and it's items describe how they would be displated on the page Attach the menu to the Layer We also need to declare the selector method to process user interactions

Sprites & Actions A sprite is a 2d image integrated into a larger scene (from Wikipedia) They can move and appear to be in active (e.g, blink) We will tie the sprit into the physics engine so that it can “interact” with other objects iphone.org/wiki/doku.php/prog_guide:sprites?s[]=s prites

Tie in with physics engine We subclassed CCSprite so that: The body and colission shape are created at init time The 'setPosition' method also tells the physics engine Delete the body and shape with the sprite is deallocated iphone.org/wiki/doku.php/prog_guide:sprites#how _to_subclass_sprites

Ideas of things to do Use more 'interesting' transitions between scenes Add sound when the flying saucer enters Have the flying saucer shoot missiles Remove the flying saucer when it hits an asteroid