Perspective, Scene Design, and Basic Animation

Slides:



Advertisements
Similar presentations
Introduction to Computer Graphics Raster Vs. Vector COMMUNICATION TECHNOLOGY.
Advertisements

Perspective, Scene Design, and Basic Animation
Chapter 2: Time and Space Lecturer: Norhayati Mohd Amin.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Copyright © 2006 by The McGraw-Hill Companies,
Graphics and Animation Chapter 8. 8 Graphics in Multimedia Graphics are an element that virtually all multimedia applications include.
Vector vs. Bitmap SciVis V
Perspective, Scene Design, and Basic Animation
University of Texas at Austin CS 378 – Game Technology Don Fussell CS 378: Computer Game Technology Beyond Meshes Spring 2012.
Components Text Text--Processing Software A Word Processor is a software application that provides the user with the tools to create and edit text.
V Obtained from a summer workshop in Guildford County July, 2014
Text. Graphics Images – photos Animation Video Audio Text Copyright issues.
Guilford County Sci Vis V204.01
1. 2  A computer is a device capable of storing data  in a format suited to the computer,  which is then processed by mathematical manipulation and.
Computer Image Dr Jimmy Lam CAD for Fashion and Textiles.
Bitmapped Images. Bitmap Images Today’s Objectives Identify characteristics of bitmap images Resolution, bit depth, color mode, pixels Determine the most.
BUILDING RICH MEDIA ELEMENTS. Design Decisions Based on Design Specification  Following the design specification will ensure that the application is.
CSE 381 – Advanced Game Programming Basic 3D Graphics
4 Perspective, Scene Design, and Basic Animation.
Vector vs. Bitmap
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
Graphics and Animation Multimedia Projects Part 2.
4 Perspective, Scene Design, and Basic Animation.
Computer Concepts 2014 Chapter 8 Digital Media. 8 Chapter Contents  Section B: Bitmap Graphics  Section C: Vector and 3-D Graphics Chapter 8: Digital.
XP Practical PC, 3e Chapter 15 1 Creating Desktop Video and Animation.
BY CASEY KUCERA Multimedia. Vector Graphics Composed of objects not pixels Object oriented graphics = vector graphics Stores a series of mathematical.
File Types. Terms Multimedia- the integration of text, sound, video and/or animation into a document Letters, brochures, newsletters, web pages or presentations.
Chapter 8B Graphics and Multimedia. 8B-2 Graphic File Formats Bitmapped images –Most common image type –Also called raster images –Image is drawn using.
By: Catyana Brown Information Technology in a Global Society: Multimedia.
Glencoe Introduction to Web Design Chapter 8 Web Graphics 1 A bitmap file format that is used by scanners and graphics programs for use in print.
1 Perception and VR MONT 104S, Fall 2008 Lecture 20 Computer Graphics and VR.
Representation of Data in Computer Systems
RASTERIZING SHAPES IN PHOTOSHOP RASTERIZE: A process in Photoshop of converting a vector image into a bitmap (or raster) image VECTOR: A vector image is.
Guilford County SciVis V104.03
3D Animation 1. Introduction Dr. Ashraf Y. Maghari Information Technology Islamic University of Gaza Ref. Book: The Art of Maya.
1© 2009 Autodesk Hardware Shade – Presenting Your Designs Hardware and Software Shading HW Shade Workflow Tessellation Quality Settings Lighting Settings.
Applications and Rendering pipeline
Vector vs. Bitmap. Vector Images Vector images (also called outline images) are images made with lines, text, and shapes. Test type is considered to be.
Chapter 10: Computer Graphics
BITMAPPED IMAGES & VECTOR DRAWN GRAPHICS
Introduction to Computer Graphics
Chapter 9 Art Composition. Chapter 9 Art Composition.
Chapter 8 Digital Media.
Three-Dimensional Art Composition
Chapter 3 Image Files © 2013 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website,
Chapter 9 Art Composition. Chapter 9 Art Composition.
4 Importing Graphics Desktop Publishing: Chapter 4
Creating Desktop Video and Animation
Vector vs. Bitmap.
Inserting and Working with Images
Chapter 10 Computer Graphics
Dimensional Trivia Clark, Savon White, James Simpson, Sabrina
2.01 Investigate graphic image design.
CSc 8820 Advanced Graphics Algorithms
Perspective & Scene Design Part 1 January 18, 2017
Chapter 3 Image Files © 2017 Cengage Learning®. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.
3D Graphics Rendering PPT By Ricardo Veguilla.
Chapter III, Desktop Imaging Systems and Issues: Lesson IV Working With Images
Chapter 10: Computer Graphics
Chapter 3:- Graphics Eyad Alshareef Eyad Alshareef.
Graphics and Animation
Graphics Basic Concepts.
Data Representation.
Representing Images 2.6 – Data Representation.
2.01 Investigate graphic image design.
Final Study Guide Arts & Communications.
2.01 Investigate graphic image design.
VISUAL COMMUNICATION USING ADOBE PHOTOSHOP CREATIVE SUITE 5
Game Programming Algorithms and Techniques
Graphics and Animation
2.01 Investigate graphic image design.
Presentation transcript:

Perspective, Scene Design, and Basic Animation Chapter 4 Perspective, Scene Design, and Basic Animation

Objectives Explain game perspectives. Describe the elements of a scene. Identify elements used to convey mood and theme. Explain issues of clarity for scaled computer-generated images. Compare and contrast bitmap and vector images. Explain how blitting and double buffering can reduce CPU usage.

Objectives (Continued) Describe how to construct 3D models. Contrast static and active animation. Define terminology used in artistic creations and computer-generated images. Create artistic assets for a video game. Summarize how pixel and vertex shading are used to create the illusion of depth.

Perspective Perspective describes how the gameplay is displayed on the screen and the position of the player within the game Perspectives that may be used include First-person perspective Second-person perspective Third-person perspective Changeable perspective

Scenes A scene is the placement of objects to create an attractive layout, obstacles, and objectives that convey the story and mood An active object is one with which the player can interact A background object is one with which the player cannot interact A backdrop may include buildings, trees, and other objects that do not damage or reward the player

Storyboards A sketch of the important frames, each with the general ideas for motion, traps, and rewards, is called a storyboard Storyboards help organize and plan what will happen in a video game or movie A storyboard should serve as a guide to the digital design of the scene The storyboard will also help the scene designer to set the dimensions of the frame

Example of a Storyboard Goodheart-Willcox Publisher

Image Properties The scene dimensions are measured in pixels A pixel can only be one color at any given time The clarity of an image is directionally proportional to the dots per inch (dpi) If a low-resolution image is made bigger, it will become blurry, or pixelated When a computer makes an object larger, it needs to fill in the spaces between each pixel This effect is called dithering

Images Much of the experience of playing a video game involves the images the player sees on screen There are two basic types of images: raster and vector Raster images are made of dots or pixels Vector images are images composed of lines, curves, and fills

Images (Continued) Raster images are often compressed from their original raw format to Reduce file size Save computer memory Decrease download time The two most popular image-compression algorithms are lossy and lossless There is a tradeoff between clarity and file size

Image Formats Goodheart-Willcox Publisher

Reducing CPU Usage The basic premise of blitting or double buffering a bitmap is to significantly reduce the amount of CPU usage Tile-based video games that use a grid map, like checkers, would also work well for blitting and double buffering To make tile-based games easier to construct, many designers create and share tile sets and sprite sheets

Two-Dimensional Games Two-dimensional (2D) games have characters and backgrounds that play in only two dimensions: length and width Two terms are commonly used to describe the presentation of a 2D game on the screen: game frame and visible play area The part of a game frame that is displayed on the video screen is called the visible play area, stage, or scope

Two and One-Half–Dimensional Games Two and one-half–dimensional (2.5D) games have two-dimensional background graphics They use three-dimensional (3D) characters and obstacles To create a sprite character set for 2.5D game, the characters and obstacles are all generated with length, width, and depth In some 2.5D games, the character set is replaced with actual 3D models with full articulation

Three-Dimensional Games Three-dimensional (3D) games have 3D characters and 3D background objects Visual perspective creates the sense of depth on a two-dimensional screen Pixel shading is based on the idea that as you move farther from the light source, things get darker A vertex is a point on a 3D model where the corners of adjacent faces meet

Three-Dimensional Games (Continued) To make an object larger as the player approaches it, the 3D engine must scale the object In newer, more powerful game engines, 3D objects are surrounded by a bounding box The computer resizes the bounding box to adjust for depth UV spheres and geodesic spheres may be used for rounded objects

Three-Dimensional Image Goodheart-Willcox Publisher; model courtesy of Autodesk, Inc.

What Is a Mesh? All 3D objects are made from interconnected polygons stuck together to form a shape These polygons, or polys, stick together along their edges and vertices in what is referred to as a mesh The mesh provides the shape for an object After the mesh is complete, textures, called materials, need to be applied

What Is a Mesh? (Continued) Once the texture map is wrapped onto an object, the images are aligned to create the finished object The poly count is the number of polygons used to make a 3D object This number is a critical measurement The color and texture maps assigned to an object tessellate around the object

Animation An animation is a series of frames played in sequence with small differences between each frame The brain interprets these small differences as motion Static animation is where the object retains its original pose while moving In active animation, an object changes pose while moving on the screen

How important do you think the backdrop is for a video game How important do you think the backdrop is for a video game? How can the backdrop be made more interesting? When might you want to use static animation for an object rather than active animation?