Unlike many game development programs,

Size: px
Start display at page:

Download "Unlike many game development programs,"

From this document you will learn the answers to the following questions:

  • What must students learn to support players with different playing styles?

  • Who does the student fail to consider when designing a game?

  • What time period are communication logs used to study?

Transcription

1 Education Editors: Gitta Domik and Scott Owen Practical Game Design and Development Pedagogy Paul J. Diefenbach Drexel University Unlike many game development programs, Drexel University s program doesn t reside in one department and so mirrors the true nature of commercial game development. 1 Drexel s Digital Media program offers a game art and production major that instructs students on the fundamental skills of design, art, programming, 3D modeling, animation, audio, and video production and on how to use industry tools such as Maya. The Computer Science department offers a game programming and development concentration focusing on software development skills and offers software courses for prototyping game concepts. The gaming courses ( classes.html) and RePlay Lab ( edu) bring these two majors together, with additional participation of students and faculty from other majors including music industry, screenwriting and playwriting, engineering, and business. The prerequisite courses provide the technical foundation for Game Development Workshops I and II. Workshop I serves as a design and preproduction phase in which teams of four to six students create a game concept and write a onepage sell document, an executive summary, a game design document, and a game prototype in 11 weeks. Instructors select the best, most viable games for full production in Workshop II the following term, and teams are merged and expanded. The sequence mirrors the industry in structure and development, using project- and asset-management software, agile development with weekly Scrum sprints, meeting minutes and communication logs, and a milestone payment mechanism in virtual dollars that translates into student grades, emphasizing soft skills. 2 In presenting the workshops, we ve made several recurring observations about students tendencies that have influenced the workshops structure and focus. Here, we detail our observations and how we ve modified the workshops in the areas of game design and development. Game Design We noticed that students often have creative ideas but miss factors that might at first seem intuitive. So, Workshop I now addresses vague game concepts and pitches. It reintroduces strategy, gameplay, and story to focus on designing games from the player s perspective so that students can assess how this affects code and assets. Fun and Strategy Students sell presentations often discuss story, characters, controls, and so on but don t mention the word fun. When asked how their game is fun, they typically respond with a list of game features, an intricate story, or exciting visuals. Yet features and story alone don t make for a compelling game, and students often don t examine how their ideas translate to the player s perspective. Students must learn to recognize that games must support players with different playing styles, strategies, and reasons for playing. A recent castle-defense game illustrates providing strategic support (see Figure 1). In this game, the player must set up catapults and other defenses during a layout stage, and then fight attacking enemies while the defenses automatically fire. Although this concept appealed to fighter-style players, the automatic weapon firing permitted the player to assume only a fighter role during the action gameplay. Two simple changes expanded the player profile to support more strategic fighters as opposed to button mashers. The first let players add defenses during attacks, but at a cost to their health because they re defenseless while making changes. The second change let players make defenses that must be triggered by the player s proximity, which 84 May/June 2011 Published by the IEEE Computer Society /11/$ IEEE

2 (a) (b) Figure 1. EpicDefense. (a) The hack-and-slash strategy. (b) The triggered-defense strategy. Workshop students modified gameplay to support different player styles by permitting hack-and-slash play or strategic armament placement and management. (a) (b) Figure 2. ZapJak. (a) An early concept sketch. (b) The player s view of the game. The original pitch for this game failed to consider the player s perspective. The students revised their pitch to remedy this problem. forces players to chose between fighting or triggering defenses. Gameplay Students often design games from an abstract perspective, as if the characters in the game are self-governed and the designer is an all-knowing god. For example, they might propose a game about two aliens battling over a magic crystal. The students will have decided the game s look and physical characteristics, the aliens abilities, the conflict s backstory, and bizarre powerups, yet disagree when we ask them whether the game is played from a first- or third-person perspective or whether it s played with a keyboard or controller. We teach teams to discuss gameplay from the player s perspective. What does the player see? What does the player do? How is information conveyed? A recent game pitch for ZapJak (see Figure 2) illustrates a typical game description: Players race futuristic cars around an Internetinspired electronic world similar to Tron and can destroy or hijack AI bot vehicles. This doesn t address what the player sees and does. A refined concept that addressed the player s perspective added this: The player, using an analog controller stick for speed and direction, controls from a behind-the-vehicle view a futuristic hovercar propelled in a three-tiered city environment of approximately 100 square city blocks. Similar to Tron, the game s city roads represent the Internet, and each building represents a website, with larger websites such as Google having larger buildings in the highest, exclusive gated tier. Players use the second analog stick to aim a reticle at enemy bot vehicles to hijack a vehicle and transfer driving control to the new vehicle. With three vehicle types and varied roads IEEE Computer Graphics and Applications 85

3 Education (a) (b) (c) Figure 3. Three approaches to conveying a story. (a) Moach Rotel combined inline dialogue and machinima segments. (b) Engine Divine used cutscenes with hand-drawn artwork. (c) City Scape also used cutscenes but used Photoshop filters to translate staged photos into a comic-book-style sequence. (Machinama employs the game engine to create an animation; cutscenes are video or animation clips between parts of a game.) having different characteristics, hijacking vehicles is integral to player strategy in both timed races and last-player-standing modes. Conveying the Story and Backstory Students often also fail to consider the player s inherent knowledge, or lack thereof, of the game. As I previously mentioned, students usually create an intricately detailed story yet fail to consider how to convey the story to the player. Students must be asked, Does the player see this story as images, video, or machinama? [Machinama employs the game engine to create an animation.] Or must they read text? Or must the game have a voice-over or character dialogue? Additionally, conveying the story can be resource-intensive for both digital-media artists and computer science software developers, so students must learn to examine the alternatives that work for their game (see Figure 3). Moach Rotel, a game about a cockroach whose family was killed by the house s owner, was storyintensive, with a 60-plus-page script, in-game dialogue, and machinima segments. Because the characters were cockroaches, the game used clicking sounds for cockroach-speak (obviating the need for voice talent). It presented the dialogue as scrolling text, which was conveyed by a custom dialogue-parsing logic the software developers wrote to translate the scriptwriter s annotated dialogue into in-game events, text, and sounds. Engine Divine and City Scape used an alternative strategy: conveying the story by cutscenes (video or animation clips between parts of a game). Both used animatics (an animated storyboard), but each generated the images differently because of their team skill sets and resource allocations. Engine Divine had a strong lead artist and decided that hand-drawn artwork would best convey the complex backstory. The City Scape team had no strong artist and wanted to convey a comic-book feel for its superhero game. So, the team used Photoshop filters to translate staged photos into a comics-style sequence. Game Development Once the students have vetted their game concept on the basis of the concerns we just detailed, they follow an iterative Scrum development cycle that permits continual refinement. This has introduced problems due to students having little experience in incremental development, milestone planning, and resource management. We now structure the milestones to guide inexperienced students in long-term project planning. Development now involves three distinct phases: establishing the asset pipeline, refining and balancing gameplay, and dressing up the game. Prove the Asset Pipeline Early Iterative development has become increasingly popular for games, and Drexel has been teaching Scrum methodology since first offering its game development program. In previous years, teams ran into difficulties because of development issues such as choosing a game engine on the basis of its capabilities instead of the team s comfort with it. Another issue has been the tendency to focus on final models and animations before establishing firm asset pipeline practices or understanding engine requirements, such as scale, polygon and performance limitations, rigging requirements, and bounding geometries. To minimize potential late-term problems, teams now must make incremental advancements addressing these issues, starting early in the term. Students must produce an in-engine, core gameplay demo by week three and in-game models and animations by weeks five and six, respectively. We don t permit any mods (modifications of a game that require the original release) using game template assets because this can hide asset pipeline issues, such as 86 May/June 2011

4 how the bounding geometry s definition can influence collision detection or whether animations are exported as bones (which connect joints and control how vertex mesh skins deform) or baked into vertex animations. Workshop II employs a similar approach. Students must demonstrate early proof of competency in creating more complex layered and blended animations and using the motion-capture studio. Gameplay Balance Proving the asset pipeline early doesn t guarantee a successful game; students often don t realize that significant gameplay testing is required. They must test and tweak gameplay factors such as character speed, gravity, the number of shots, and health parameters. However, this tweaking could present a potential bottleneck for the computer science students who adjust these parameters. Because of gameplay balancing s importance, by week five the students must expose all relevant gameplay parameters in the form of an option screen (see Figure 4) that players can modify. Also, a spreadsheet keeping track of the parameter settings and corresponding gameplay ratings lets developers track optimal settings. This permits every team member to be a tester and facilitates beta testing. An additional benefit is that this player experimentation sometimes results in unexpected play modes, such as when testing found that lowering gravity in City Scape resulted in a fun exploratory mode, jumping from rooftop to rooftop. The 80/20 Rule We also direct teams to focus on efforts that provide the most bang for the buck, as exemplified by the 80/20 rule, also called the Pareto principle Figure 4. The Proteus game s parameter screen lets play testers tweak gameplay. or the vital few and trivial many. This rule states that approximately 20 percent of the vital tasks produce 80 percent of the results. In the workshops, we apply this principle at week eight, when the final 20 percent of the development effort can make or break the game and outweigh the other 80 percent to bring the game to beta functionality. Besides the obvious addition of visual effects such as shaders and particle systems, students learn to focus on adding game modes and reusing assets. Visual effects can provide significant enhancements with relatively little effort; likewise, game modes can enhance gameplay with minimal code changes. For example, in the castle defense game, testing revealed that players enjoyed facing attacks by unlimited numbers of trolls until the player s character is killed, in contrast to the normal game mode, in which each level had a set number of attackers. Additional variations include adding a timer to regulate gameplay time or adding defenses that are triggered automatically or by the player. Simple repurposing of assets can also enhance games. Animated characters can be integrated with menu screens (see Figure 5) or visually augment intralevel story elements. A spherical camera path around a victorious character can enhance a (a) (b) Figure 5. The Project Bolt menu. (a) The main character, Bolt, repurposed on the main menu screen. (b) Bolt outfitted with props for the instruction menu screen. IEEE Computer Graphics and Applications 87

5 Education win condition. Such asset reuse requires minimal effort but can make the game look much more professional. Balancing Structure and Freedom Without an imposed structure, students design and development efforts can be misguided owing to their lack of real-world experience. A course can t teach strategy, soft skills, and agile development without imposing the structure to support that teaching. With this additional structure, the quality and complexity of our students games have increased. One drawback of this approach is that some students complain about a lack of individual freedom. Although this problem is common in large corporate projects, academic settings require a balance. Requiring formalism can sometimes stifle creativity and enthusiasm, but when we simply recommend a structure, teams tend to ignore it. For example, one team produced a proof-of-concept mod in week three instead of a true new game build; this resulted in late-term integration problems. Similarly, the agile development methodology and soft-skills training alone can t fully simulate industry conditions because team leaders don t have the true authority that might exist in a corporate environment. This sometimes leads to conflicts, but employment contracts for both team leaders and members can help clarify their roles, tasks, and expectations. Overall, the workshops have successfully prepared our students for industry, as evidenced by Drexel s number-three national ranking in game design ( and a pairing with EA Games in a CBS Evening News segment on preparing students for the industry. Over the past few years, we ve made numerous changes to the workshops structure and the curriculum as a whole. However, the workshops still need continual refinement to balance industry requirements with the exploratory nature of the academic setting. References 1. M. Sakey, Fundamental Learning GDC 2006 Curriculum Workshop, Int l Game Developers Assoc., Apr. 2006; 2. P. Diefenbach, Teaching Soft-Skills: Digital Game Development in a Multi-discipline Environment, Eurographics 2008 Annex to the Conf. Proc., Eurographics Assoc., 2008, pp Paul J. Diefenbach is an associate professor in Drexel University s Digital Media program. Contact him at pjdief@ drexel.edu. Contact department editors Gitta Domik at domik@ uni-paderborn.de and Scott Owen at sowen@gsu.edu. Selected CS articles and columns are also available for free at IEEE Pervasive Computing explores the many facets of pervasive and ubiquitous computing with research articles, case studies, product reviews, conference reports, departments covering wearable and mobile technologies, and much more. Keep abreast of rapid technology change by subscribing today! 88 May/June 2011

6 This article was featured in For access to more content from the IEEE Computer Society, see computingnow.computer.org. Top articles, podcasts, and more. computingnow.computer.org

PROGRAM OUTLINE 2015 - PAGE 1

PROGRAM OUTLINE 2015 - PAGE 1 PROGRAM OUTLINE 2015 - PAGE 1 MODULE 1 (8 WEEKS) INTRO TO 3D MODELING WITH MAYA An introduction on how to begin building and manipulating objects in 3D Space. DRAWING BASICS Here we will learn drawing

More information

Advanced Diploma of Professional Game Development - Game Art and Animation (10343NAT)

Advanced Diploma of Professional Game Development - Game Art and Animation (10343NAT) The Academy of Interactive Entertainment 201 Advanced Diploma of Professional Game Development - Game Art and Animation (10343NAT) Subject Listing Online Campus 0 Page Contents 3D Art Pipeline...2 Grasping

More information

Film and Television. Film and Television 299

Film and Television. Film and Television 299 Film and Television 299 Film and Television Degree Associate in Arts Degree, Film Production Program Description Film is a universally recognized medium that has a profound impact on how we view the world

More information

NORCO COLLEGE SLO to PLO MATRIX PLOs

NORCO COLLEGE SLO to PLO MATRIX PLOs SLO to PLO MATRX CERTF CATE/ Game Art: 3D Animation NAS686/NCE686 PROGR AM: ART-17: Beginning Drawing dentify and employ proper use of a variety of drawing materials. dentify, define, and properly use

More information

CG: Computer Graphics

CG: Computer Graphics CG: Computer Graphics CG 111 Survey of Computer Graphics 1 credit; 1 lecture hour Students are exposed to a broad array of software environments and concepts that they may encounter in real-world collaborative

More information

DAE- ANIMATION FILM MAKING -

DAE- ANIMATION FILM MAKING - DAE- ANIMATION FILM MAKING - Animation means, literally, to breathe life into something. A transformation is involved, what were still, now moves. Animation is that stimulus to the mental, physical, and

More information

Articulate Certified Training Courses www.omniplex.co 2 Instructional Design for Rapid elearning Course Synopsis: Join our Instructional Design for Rapid elearning course if you want to get the most out

More information

The Art Institute of Philadelphia Catalog Addendum GAME ART & DESIGN

The Art Institute of Philadelphia Catalog Addendum GAME ART & DESIGN The Art Institute of Philadelphia Catalog Addendum GAME ART & DESIGN See AiPrograms.info for program duration, tuition, fees, and other costs, median debt, federal salary data, alumni success, and other

More information

Advanced Diploma of Screen - 3D Animation and VFX (10343NAT)

Advanced Diploma of Screen - 3D Animation and VFX (10343NAT) The Academy of Interactive Entertainment 2013 Advanced Diploma of Screen - 3D Animation and VFX (10343NAT) Subject Listing Online Campus 0 Page Contents 3D Art Pipeline...2 Modelling, Texturing and Game

More information

Game Programming. Introduction. Project Summer Term 2007. Nintendo. Wednesday, April 18th, 2007. Andrew Nealen, TU Berlin, 2007 1

Game Programming. Introduction. Project Summer Term 2007. Nintendo. Wednesday, April 18th, 2007. Andrew Nealen, TU Berlin, 2007 1 Game Programming Project Summer Term 2007 Nintendo Introduction Wednesday, April 18th, 2007 Andrew Nealen, TU Berlin, 2007 1 What is this project about? Gameplay Gameplay mechanics Engine design/coding

More information

Jordan Shearer. Portfolio. 1Maya Modeling

Jordan Shearer. Portfolio. 1Maya Modeling Jordan Shearer Portfolio I am Jordan Shearer the coolest person around! I have been working on animations since a young age. I have a vast knowledge of editing software. I have a website called Jornations.com

More information

DIPLOMA IN 3D DESIGN AND DIGITAL ANIMATION COURSE INFO PACK

DIPLOMA IN 3D DESIGN AND DIGITAL ANIMATION COURSE INFO PACK Registered as a Private Higher Education Institution with the Department of Higher Education and Training in South Africa under the Higher Education Act 1997 Registration Nr. 2001/HE07/005 DIPLOMA IN 3D

More information

Republic Polytechnic School of Information and Communications Technology C391 Animation and Visual Effect Automation.

Republic Polytechnic School of Information and Communications Technology C391 Animation and Visual Effect Automation. Republic Polytechnic School of Information and Communications Technology C391 Animation and Visual Effect Automation Module Curriculum This document addresses the content related abilities, with reference

More information

GAME DESIGN AND DEVELOPMENT TECHNOLOGY. Game Design and Development Technology I

GAME DESIGN AND DEVELOPMENT TECHNOLOGY. Game Design and Development Technology I GAME DESIGN AND DEVELOPMENT TECHNOLOGY Game Design and Development Technology I Unit 1: Orientation and Safety Competency 1: Introduction to Game Design Competency 2: Safety in the Computer Environment

More information

SOUTHERN REGIONAL SCHOOL DISTRICT BUSINESS CURRICULUM. Course Title: Multimedia Grade Level: 9-12

SOUTHERN REGIONAL SCHOOL DISTRICT BUSINESS CURRICULUM. Course Title: Multimedia Grade Level: 9-12 Content Area: Business Department Course Title: Multimedia Grade Level: 9-12 Unit 1 Digital Imaging 10 Weeks Unit 2 Cell Animation 10 Weeks Unit 3 Sound Editing 10 Weeks Unit 4 Visual Editing 10 Weeks

More information

Associate Degrees Graphic Design Career Path Photography Career Path Animation Career Path Digital Media Career Path

Associate Degrees Graphic Design Career Path Photography Career Path Animation Career Path Digital Media Career Path Associate Degrees Graphic Design Career Path Photography Career Path Animation Career Path Digital Media Career Path s Computer Animation Advanced Computer Animation Computer Graphics Illustration Photography

More information

BAA DigiPen 3D Animation 11

BAA DigiPen 3D Animation 11 BAA DigiPen 3D Animation 11 District Name: School District No. 73 (Kamloops / Thompson) Developed by: DigiPen Institute of Technology / Martin Culbert Revised by: Justin devries Date Developed: 4/27/11

More information

art new media Graphic Design Certificate Art New Media Degree Illustration Certificate

art new media Graphic Design Certificate Art New Media Degree Illustration Certificate Area: Fine & Applied Arts Dean: Dr. David Newnham Phone: (916) 484-8433 Counseling: (916) 484-8572 Art New Media Degree The Art New Media program emphasizes visual arts produced in a digital environment.

More information

Level Design. Characters vs Levels. Level Design. Case Study: Matchstick puzzle

Level Design. Characters vs Levels. Level Design. Case Study: Matchstick puzzle Level Design Characters vs Levels Characters and levels are essentially the main user interface of your game. Levels present the challenge or problem to solve, Characters present the tools to solve them.

More information

Career Opportunities in Electronic Game & Simulation Design

Career Opportunities in Electronic Game & Simulation Design Career Opportunities in Electronic Game & Simulation Design Development Career Categories Producers Designers Artists Programmers Game Testers and Quality Assurance Technicians Developer Careers Producers

More information

IE Class Web Design Curriculum

IE Class Web Design Curriculum Course Outline Web Technologies 130.279 IE Class Web Design Curriculum Unit 1: Foundations s The Foundation lessons will provide students with a general understanding of computers, how the internet works,

More information

Game Development Fundamentals

Game Development Fundamentals Game Development Fundamentals Levels: 9-12 Units of Credit: 0.5 CIP Code: 11.0803 Core Code: 35-02-0000-045, 35-02-0013-045, Prerequisite: recommended Computer Programming 1, Digital Media1 Skill Test:

More information

Game Design Document and Production Timeline. John Laird and Sugih Jamin University of Michigan

Game Design Document and Production Timeline. John Laird and Sugih Jamin University of Michigan Game Design Document and Production Timeline John Laird and Sugih Jamin University of Michigan Game Production Timeline Inspiration (1 month) Results in game treatment/concept paper Conceptualization (3-5

More information

Mike Cohn - background

Mike Cohn - background Scrum for Video Game Development 1 Mike Cohn - background 2 What is Scrum? One of the agile processes Iterative and incremental Produces demonstrable working software every two to four weeks Results- and

More information

Production Design / Art Direction. TV Animation / Shorts

Production Design / Art Direction. TV Animation / Shorts 12 Head of 14 Head of Animation Studio 16 Top Creative Story Generates and develops story ideas, sequences, storyboards, elements and enhancements throughout production. TV Animation / Shorts Manages the

More information

You will need to bring along your completed assignment/s along with all portfolio evidence of your relevant experience.

You will need to bring along your completed assignment/s along with all portfolio evidence of your relevant experience. International Games Architecture & Design Your Application ARRANGING AN INTERVIEW The stages you must complete for an interview: 1. Complete the Study Skill Tests (Kies Actief) 2. Complete the quiz to

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Contents Welcome to Corel VideoStudio Pro X6............................ 2 New Features and Enhancements................................ 4 Understanding the Workspace..................................

More information

Welcome to Corel VideoStudio Pro X5

Welcome to Corel VideoStudio Pro X5 Contents Welcome to Corel VideoStudio Pro X5............................ 2 New Features and Enhancements................................ 4 Getting to Know the Workspace.................................

More information

Design and Development of a Mobile Game - Based Learning Application in Synonyms, Antonyms, and Homonyms

Design and Development of a Mobile Game - Based Learning Application in Synonyms, Antonyms, and Homonyms Design and Development of a Mobile Game - Based Learning Application in Synonyms, Antonyms, and Homonyms Ellenita R. Red erred@mcl.edu.ph Kenneth Edward D. Domingo kenneth.domingo07@gmail.com Kristian

More information

Wednesday, March 30, 2011 GDC 2011. Jeremy Ernst. Fast and Efficient Facial Rigging(in Gears of War 3)

Wednesday, March 30, 2011 GDC 2011. Jeremy Ernst. Fast and Efficient Facial Rigging(in Gears of War 3) GDC 2011. Jeremy Ernst. Fast and Efficient Facial Rigging(in Gears of War 3) Fast and Efficient Facial Rigging in Gears of War 3 Character Rigger: -creates animation control rigs -creates animation pipeline

More information

BOARD REPORT NO. 14-6-1C Exhibit B, Page 1

BOARD REPORT NO. 14-6-1C Exhibit B, Page 1 BOARD REPORT NO. 14-6-1C Exhibit B, Page 1 DIGITAL ARTS, GRAPHICS, AND MEDIA EMPLOYER NEEDS ASSESSMENT REPORT ISSUES By 2017, San Mateo region will have 50,849 jobs in the Digital Arts, Graphics and Media

More information

Christopher DePriest

Christopher DePriest 1440 Hidden Mesa Ct. El Cajon, CA. 92019 Phone: (619) 504 6732 E-mail: c_depriest@hotmail.com Christopher DePriest www.chrisdepriest.com Objective Education To work as an animator in video game production,

More information

Critical Components you need in a Course Authoring Tool. By Vantage Path

Critical Components you need in a Course Authoring Tool. By Vantage Path The Three most Critical Components you need in a Course Authoring Tool By Vantage Path Table Of Contents Tools To Create a Great Presentation...4 Object Design Tools... 9 Interactivity Elements... 19 Building

More information

GeomCaches for VFX in Ryse. Sascha Herfort Senior Technical Artist

GeomCaches for VFX in Ryse. Sascha Herfort Senior Technical Artist GeomCaches for VFX in Ryse Sascha Herfort Senior Technical Artist GeomCaches in Ryse I. Introduction II. III. IV. Why GeomCaches? Features & Limitations Pipeline Development V. Case Studies VI. Conclusion

More information

Course Syllabus. Tuesday 4 pm to 5 pm & Thursday 4 to 5 pm

Course Syllabus. Tuesday 4 pm to 5 pm & Thursday 4 to 5 pm Course Syllabus Course Information: Course Title IAT 343: Animation (Spring 2012) Time & Location Lecture (Rm 2600): Tuesday 6:30 pm to 7:50 pm Lab (Rm 3140): D101: Wednesday 2:30 3:50 pm D102: Wednesday

More information

IMGD 1001: The Game Art Pipeline

IMGD 1001: The Game Art Pipeline IMGD 1001: The Game Art Pipeline by Mark Claypool (claypool@cs.wpi.edu) Robert W. Lindeman (gogo@wpi.edu) Artistic Courses AR 1100. ESSENTIALS OF ART. This course provides an introduction to the basic

More information

Multimedia Arts and Technologies

Multimedia Arts and Technologies Multimedia Arts and Technologies 417 Multimedia Arts and Technologies Multimedia is a field of study and an Industry emerging from the synthesis of the different mediums of communication. With the digitalization

More information

Film Production. Areas of Focus. Master of Fine Arts Degree Program. Story Development & Preproduction

Film Production. Areas of Focus. Master of Fine Arts Degree Program. Story Development & Preproduction Areas of Focus Film Production Story Development & Preproduction Film Production Techniques & Technology Marketing, Pitching, & Distribution Graduate-Level Portfolio Master of Fine Arts Degree Program

More information

20 Producing a Video. Media 20

20 Producing a Video. Media 20 LESSON PROJECT IDEAS COPY MASTER Video Book Report Choose a key scene from a story you have read. Write a script for the scene, sticking closely to what happens in the story. Then prepare a storyboard

More information

3D Animation Graphic Designer

3D Animation Graphic Designer Goal of the program The training program aims to develop the trainee to get him to the level of professional and creative in designing models three-dimensional and move with all respect to this art and

More information

Game Design and Programming

Game Design and Programming CS 673: Spring 2012 Game Design and Programming Nintendo Introduction Andy Nealen, Rutgers, 2012 1/19/2012 1 What is this class about? Game design Real world abstractions Visuals Interaction Design iterations

More information

Introduction to Game Design. Playing: Galaxy Trucker Watching: The Big Bang Theory Reading: Master Thesis! Listening: Slayer

Introduction to Game Design. Playing: Galaxy Trucker Watching: The Big Bang Theory Reading: Master Thesis! Listening: Slayer Introduction to Game Design and Development Playing: Galaxy Trucker Watching: The Big Bang Theory Reading: Master Thesis! Listening: Slayer Game Design: What is it? Game Design is Design Design is concerned

More information

Albright Digital Media Alumni: Where Are They Now? Combined Major in Digital Media

Albright Digital Media Alumni: Where Are They Now? Combined Major in Digital Media Professor Daniel J. Falabella, Ph.D., Chair Associate Professor Matthew Garrison, M.F.A. Assistant Professors Jocelyn Kolb, M.F.A. and Wil Lindsay, M.F.A. Combined Major in Digital Media Interdisciplinary

More information

CUFANM501A Create 3D digital character animation

CUFANM501A Create 3D digital character animation CUFANM501A Create 3D digital character animation Revision Number: 1 CUFANM501A Create 3D digital character animation Modification History Not applicable. Unit Descriptor Unit descriptor This unit describes

More information

DAE - ANIMATION FILM MAKING -

DAE - ANIMATION FILM MAKING - DAE - ANIMATION FILM MAKING - PRODUCT NOTE (Effective from September 09) *Available at select Arena Animation centers only Animation Animation means, literally, to breathe life into some thing. A transformation

More information

BUILDING DIGITAL LITERACY PURPOSE DEFINING DIGITAL LITERACY USING THIS GUIDE

BUILDING DIGITAL LITERACY PURPOSE DEFINING DIGITAL LITERACY USING THIS GUIDE BUILDING PURPOSE In today s society, it is critical for students to be able to use the vast amount of technology available to them. Computer literacy will provide students with skills they need to succeed

More information

3D Modeling, Animation, and Special Effects ITP 215x (2 Units)

3D Modeling, Animation, and Special Effects ITP 215x (2 Units) 3D Modeling, Animation, and Special Effects ITP 215x (2 Units) Fall 2008 Objective Overview of developing a 3D animation from modeling to rendering: Basics of surfacing, lighting, animation, and modeling

More information

Homeschool Programming, Inc.

Homeschool Programming, Inc. Printed Course Overview Course Title: TeenCoder: Game Programming TeenCoder: Game Programming Printed Course Syllabus and Planner Updated October, 2015 Textbook ISBN: 978-0-9887033-2-2, published 2013

More information

Games Development Education to Industry. Dr. Catherine French Academic Group Leader Games Programming, Software Engineering and Mobile Systems

Games Development Education to Industry. Dr. Catherine French Academic Group Leader Games Programming, Software Engineering and Mobile Systems Games Development Education to Industry Dr. Catherine French Academic Group Leader Games Programming, Software Engineering and Mobile Systems How do they get from inspiration to destination? Where do they

More information

ACADEMY OF INTERACTIVE

ACADEMY OF INTERACTIVE INTERACTIVE ENTERTAINMENT VET IN SCHOOLS PROGRAMS IANCTAED Page 2 INTRODUCTION The Academy of Interactive Entertainment (AIE) is a not-for-profit Registered Training Organisation that was first established

More information

If there are any questions, students are encouraged to email or call the instructor for further clarification.

If there are any questions, students are encouraged to email or call the instructor for further clarification. Course Outline 3D Maya Animation/2015 animcareerpro.com Course Description: 3D Maya Animation incorporates four sections Basics, Body Mechanics, Acting and Advanced Dialogue. Basic to advanced software

More information

BAA 3D Game Design 12

BAA 3D Game Design 12 BAA 3D Game Design 12 District Name: Coquitlam District Number: 43 Developed by: Mike Schoenhals, Lisa Mulzet, & Jodey Udell Date Developed: March 1 st, 2012 School Name: Heritage Woods Secondary, Centennial

More information

COMPUTER TITLE: C T E V I S A R T S 2 CBEDS NUMBER: NCLB CORE SUBJECT: APPROVAL DATE:

COMPUTER TITLE: C T E V I S A R T S 2 CBEDS NUMBER: NCLB CORE SUBJECT: APPROVAL DATE: COMPUTER TITLE: C T E V I S A R T S 2 COURSE TITLE: CTE Foundations in Visual Arts 2: Audio, Video, Gaming & Animation COURSE NUMBER: CTExxx GRADE LEVEL: 10 12 LENGTH OF COURSE: 1 Year (Students receive

More information

Anime Studio Debut 10 Create Your Own Cartoons & Animations!

Anime Studio Debut 10 Create Your Own Cartoons & Animations! Anime Studio Debut 10 Create Your Own Cartoons & Animations! Anime Studio Debut is your complete animation program for creating 2D movies, cartoons, anime or cut out animations. This program is fun, easy,

More information

Game Development. What is a game?

Game Development. What is a game? Game Development Doron Nussbaum COMP 3501 - Game Development 1 What is a game? Doron Nussbaum COMP 3501 - Game Development 2 Books/Movie vs. Game Good books have Place Era Plot Characters Relationships

More information

Multimedia Arts and Technologies

Multimedia Arts and Technologies 398 Multimedia Arts and Technologies Multimedia Arts and Technologies Degrees, Certificates and Awards Associate in Arts Degree, Media Arts Certificate of Achievement, Media Arts Associate in Arts Degree,

More information

New Media production week 9

New Media production week 9 New Media production week 9 How to Make an Digital Animation poonpong@gmail.com Hardware PC or Mac with high resolution graphics and lots of RAM Peripherals such as graphics tablet Digital Camera (2D,

More information

SOFTWARE ENGINEER. For Online (front end) Java, Javascript, Flash For Online (back end) Web frameworks, relational databases, REST/SOAP, Java/Scala

SOFTWARE ENGINEER. For Online (front end) Java, Javascript, Flash For Online (back end) Web frameworks, relational databases, REST/SOAP, Java/Scala SOFTWARE ENGINEER Video Game Engineering is intellectually demanding work. Our software engineers are faced with daily challenges that involve physics (from collision detection to complex physical reactions),

More information

The CS Principles Project 1

The CS Principles Project 1 The CS Principles Project 1 Owen Astrachan, Duke University Amy Briggs, Middlebury College Abstract The Computer Science Principles project is part of a national effort to reach a wide and diverse audience

More information

Cartooning and Animation MS. Middle School

Cartooning and Animation MS. Middle School Cartooning and Animation Middle School Course Title Cartooning and Animation MS Course Abbreviation CART/ANIM MS Course Code Number 200603 Special Notes General Art is a prerequisite, or department permission

More information

Last Team Standing Creator GUIDE

Last Team Standing Creator GUIDE GUIDE 1 INTRODUCTION Upon entering the GTA Online Creator tool, you ll be presented with multiple Job types that are available to create (01). 01 2 02 After selecting Last Team Standing [LTS], you will

More information

Revision Number: 1. CUFANM301A Create 2D digital animations

Revision Number: 1. CUFANM301A Create 2D digital animations Revision Number: 1 CUFANM301A Create 2D digital animations CUFANM301A Create 2D digital animations Modification History Not applicable. Unit Descriptor Unit descriptor This unit describes the performance

More information

BASIC INFANTRY CONTROLS 3 CAMPAIGN MODE GAME SCREEN 6 CAMPAIGN 7 MULTIPLAYER MODE GAME SCREEN 9 MULTIPLAYER 10 CO-OP 12 MY SOLDIER 14

BASIC INFANTRY CONTROLS 3 CAMPAIGN MODE GAME SCREEN 6 CAMPAIGN 7 MULTIPLAYER MODE GAME SCREEN 9 MULTIPLAYER 10 CO-OP 12 MY SOLDIER 14 TM TABLE OF CONTENTS BASIC INFANTRY CONTROLS 3 CAMPAIGN MODE GAME SCREEN 6 CAMPAIGN 7 MULTIPLAYER MODE GAME SCREEN 9 MULTIPLAYER 10 CO-OP 12 MY SOLDIER 14 BATTLEFIELD 3 STORE 17 BATTLELOG 18 BASIC INFANTRY

More information

Information Technology Career Cluster Game Design: Animation and Simulation. Course Standard 1

Information Technology Career Cluster Game Design: Animation and Simulation. Course Standard 1 Information Technology Career Cluster Game Design: Animation and Simulation Course Number: 11.42900 Course Description: Students completing this course will gain an understanding of the fundamental principles

More information

Design Sprint Methods. Playbook for start ups and designers

Design Sprint Methods. Playbook for start ups and designers Design Sprint Methods Playbook for start ups and designers Welcome! Design matters. Speed matters. What if we could have both? In this handbook, we have collected industry best practices that allow teams

More information

Jul 5, 2012, Sep 13, 2012, Oct 11, 2012, Jan 10, 2013, Mar 1, 2013, Jul 11, 2013, Sep 12, 2013, Oct 10, 2013

Jul 5, 2012, Sep 13, 2012, Oct 11, 2012, Jan 10, 2013, Mar 1, 2013, Jul 11, 2013, Sep 12, 2013, Oct 10, 2013 FILMMAKING: TUITION: $18,000* (USD)/Semester / 13,747 (EURO)/Semester YOU GRADUATE WITH: Diploma/Certificate, DVD Film Reel LOCATION: New York, Los Angeles, USA Jul 5, 2012, Sep 13, 2012, Oct 11, 2012,

More information

Information Technology Career Field Pathways and Course Structure

Information Technology Career Field Pathways and Course Structure Information Technology Career Field Pathways and Course Structure Courses in Information Support and Services (N0) Computer Hardware 2 145025 Computer Software 145030 Networking 2 145035 Network Operating

More information

VIDEO PRODUCTION- COURSE OVERVIEW TECHNOLOGY EDUCATION DEPARTMENT BALDWIN HIGH SCHOOL

VIDEO PRODUCTION- COURSE OVERVIEW TECHNOLOGY EDUCATION DEPARTMENT BALDWIN HIGH SCHOOL VIDEO PRODUCTION- COURSE OVERVIEW TECHNOLOGY EDUCATION DEPARTMENT BALDWIN HIGH SCHOOL VIDEO PRODUCTION COURSE DESCRIPTION This course will allow students to develop professional skills in video, film,

More information

DIGITAL MEDIA ARTS. DMA 225 Computer Animation 1. 3 1 lecture/4 studio hours Hours: lecture/laboratory/other (specify)

DIGITAL MEDIA ARTS. DMA 225 Computer Animation 1. 3 1 lecture/4 studio hours Hours: lecture/laboratory/other (specify) COURSE OUTLINE DIGITAL MEDIA ARTS DMA 225 Computer Animation 1 Course Number Course Title 3 1 lecture/4 studio hours Credits Hours: lecture/laboratory/other (specify) Catalog description: Using 3-D animation

More information

Bachelor of Creative Design. Game Art. www.mediadesign.com. Course Components

Bachelor of Creative Design. Game Art. www.mediadesign.com. Course Components Course Components Game Art Bachelor of Creative Design www.mediadesign.com Year One 01 Interdisciplinary Components Theoretical Foundations of Art and Design: GA1A01 GA1A01 utilises traditional art theories

More information

Our One-Year 3D Animation Program is a comprehensive training in 3D using Alias

Our One-Year 3D Animation Program is a comprehensive training in 3D using Alias 1 YEAR 3D ANIMATION Illusion is the first of all pleasures Oscar Wilde Our One-Year 3D Animation Program is a comprehensive training in 3D using Alias Oscar Winning software, Maya, the industry standard

More information

MT. DIABLO UNIFIED SCHOOL DISTRICT COURSE OF STUDY

MT. DIABLO UNIFIED SCHOOL DISTRICT COURSE OF STUDY COURSE TITLE: ANIMATION I COURSE NUMBER: 4435 CBEDS NUMBER: 2908 DEPARTMENT: Visual Arts or Visual and Performing Arts LENGTH OF COURSE: One Year CREDITS PER SEMESTER: 5 GRADE LEVEL(S): 10-12 REQUIRED

More information

Information Technology Cluster

Information Technology Cluster Web and Digital Communications Pathway Information Technology Cluster 3D Animator This major prepares students to utilize animation skills to develop products for the Web, mobile devices, computer games,

More information

INTERNSHIP REPORT CSC410. Shantanu Chaudhary 2010CS50295

INTERNSHIP REPORT CSC410. Shantanu Chaudhary 2010CS50295 INTERNSHIP REPORT CSC410 Abstract This report is being presented as part of CSC410 course to describe the details of the internship done as part of the summer internship process of the IIT-Delhi curriculum.

More information

NetEase Games - Paid Internship Program

NetEase Games - Paid Internship Program NetEase Games - Paid Internship Program About NetEase, Inc. NetEase, Inc., is a leading game developer and publisher based in China. Founded in 1997, the company has been listed on NASDAQ in the US since

More information

How To Teach Students To Program A Virtual World

How To Teach Students To Program A Virtual World Gaming for Middle School Students: Building Virtual Worlds CHARLES R. HARDNETT Spelman College Computer Science Department Atlanta, GA 30314 hardnett@spelman.edu ABSTRACT We can begin engaging new talented

More information

3D Animation & Video Production Powerful solutions for corporate marketing, training & communication.

3D Animation & Video Production Powerful solutions for corporate marketing, training & communication. 3D Animation & Video Production Powerful solutions for corporate marketing, training & communication. executive summary Provis Media Group produces engaging 3D animation and video for a variety of industries

More information

UCLA Extension Writers Program Public Syllabus. Writing for Animation

UCLA Extension Writers Program Public Syllabus. Writing for Animation UCLA Extension Writers Program Public Syllabus Note to students: this public syllabus is designed to give you a glimpse into this course and instructor. If you have further questions about our courses

More information

GAME DESIGN AND DEVELOPMENT PROGRAM INFORMATION

GAME DESIGN AND DEVELOPMENT PROGRAM INFORMATION GAME DESIGN AND DEVELOPMENT PROGRAM INFORMATION College of Technology Bachelor of Science Game Design and Development Program 120 Credits 4 year Degree ADOBE CREATIVE SUITE The ultimate toolkit for crafting

More information

Arts, Media and Entertainment Pathway Courses

Arts, Media and Entertainment Pathway Courses CBEDS Code Course Title 5751 RCOE Creative Digital Media Course Hours Primary Pathway 180 Design, Visual and Media Arts, and / Production and Managerial Arts 5751 Digital Imaging 360 Design, Visual and

More information

MONROE TOWNSHIP PUBLIC SCHOOLS WILLIAMSTOWN, NEW JERSEY. Digital Media and Technology Grade 8

MONROE TOWNSHIP PUBLIC SCHOOLS WILLIAMSTOWN, NEW JERSEY. Digital Media and Technology Grade 8 MONROE TOWNSHIP PUBLIC SCHOOLS WILLIAMSTOWN, NEW JERSEY Williamstown Middle School Digital Media and Technology Grade 8 September 2010 Written by: Michael Spano Supervisor of Curriculum and Instruction

More information

HACKETTSTOWN, NEW JERSEY. Computer Animation Grades 10-12 CURRICULUM GUIDE FINAL DRAFT. July 2014

HACKETTSTOWN, NEW JERSEY. Computer Animation Grades 10-12 CURRICULUM GUIDE FINAL DRAFT. July 2014 HACKETTSTOWN, NEW JERSEY Computer Animation Grades 10-12 CURRICULUM GUIDE FINAL DRAFT July 2014 Mr. David C. Mango, Superintendent Ms. Nadia Inskeep, Director of Curriculum & Instruction Developed by:

More information

DRAWING AND ANIMATION WORKSHOP ( By Top Peg Animation & Creative Studio Inc. located at Las Pinas City )

DRAWING AND ANIMATION WORKSHOP ( By Top Peg Animation & Creative Studio Inc. located at Las Pinas City ) DRAWING AND ANIMATION WORKSHOP ( By Top Peg Animation & Creative Studio Inc. located at Las Pinas City ) 1) BASIC DRAWING CLASS Needed Materials : Construction & Proportion Plastic envelope, sketchpad

More information

Visual Studio 2008: Windows Presentation Foundation

Visual Studio 2008: Windows Presentation Foundation Visual Studio 2008: Windows Presentation Foundation Course 6460A: Three days; Instructor-Led Introduction This three-day instructor-led course provides students with the knowledge and skills to build and

More information

Animation and Visual Effects New Official University Degree

Animation and Visual Effects New Official University Degree Animation and Visual Effects New Official University Degree BARCELONA CAMPUS KEY POINTS OF THE UNIVERSITY DEGREE IN ANIMATION AND VISUAL EFFECTS Thorough education Active professors We offer you a complete

More information

ARTS, AUDIO/VIDEO TECHNOLOGY AND COMMUNICATIONS

ARTS, AUDIO/VIDEO TECHNOLOGY AND COMMUNICATIONS ARTS, AUDIO/VIDEO TECHNOLOGY AND COMMUNICATIONS Principles of Arts, Audio/Video Technology & Communications 0.5 Credit 812210 Professional Communications (not required for Class of 2018) 0.5 Credit 820210

More information

Research and Digital Game- based Play: A Review of Martha Madison

Research and Digital Game- based Play: A Review of Martha Madison Research and Digital Game- based Play: A Review of Martha Madison White Paper Compiled by Anne Snyder, Ph.D. Second Avenue Learning is a certified women- owned business, specializing in the creation of

More information

Adobe Flash Catalyst CS5.5

Adobe Flash Catalyst CS5.5 Adobe Flash Catalyst CS5.5 Create expressive interfaces and interactive content without writing code Use a new efficient workflow to collaborate intelligently and roundtrip files with developers who use

More information

Game Design From Concepts To Implementation

Game Design From Concepts To Implementation Game Design From Concepts To Implementation Overview of a Game Engine What is a Game Engine? (Really) Technical description of game: A Soft real-time interactive agent-based computer simulation A game

More information

Program of Study. Animation (1288X) Level 1 (390 hrs)

Program of Study. Animation (1288X) Level 1 (390 hrs) Program of Study Level 1 (390 hrs) ANI1513 Life Drawing for Animation I (60 hrs) Life drawing is a fundamental skill for creating believability in our animated drawings of motion. Through the use of casts

More information

Module 3 Crowd Animation Using Points, Particles and PFX Linker for creating crowd simulations in LightWave 8.3

Module 3 Crowd Animation Using Points, Particles and PFX Linker for creating crowd simulations in LightWave 8.3 Module 3 Crowd Animation Using Points, Particles and PFX Linker for creating crowd simulations in LightWave 8.3 Exercise 2 Section A Crowd Control Crowd simulation is something you see in movies every

More information

Bronwen Grimes Technical Artist

Bronwen Grimes Technical Artist Bronwen Grimes Technical Artist www.bronwengrimes.com bronwen@bronwengrimes.com Objective To use my skill and knowledge in the game development arena to create innovative, artistically appealing solutions

More information

PROGRAM OUTLINE OF RECORD NEW DEGREE

PROGRAM OUTLINE OF RECORD NEW DEGREE NEW DEGREE Associate in Arts in Political Science for Transfer College: Moreno Valley The Associate in Arts in Political Science for Transfer degree is a curricular pattern designed specifically to transfer

More information

Web Tools and Techniques for E-Learning

Web Tools and Techniques for E-Learning Web Tools and Techniques for E-Learning This paper is intended as an introduction to web-based training for technical communicators who are new to e-learning or want to move into e-learning. We focus on

More information

Computer Game and Animation Past, Present, and Future

Computer Game and Animation Past, Present, and Future Computer Game and Animation Past, Present, and Future Computation Based Computer Game and Animation Past, Present, and Future Has gameplay, a pattern defined though a set of rules Changing objects over

More information

ANIMATION, MOTION GRAPHICS, POST & VFX

ANIMATION, MOTION GRAPHICS, POST & VFX ANIMATION, MOTION GRAPHICS, POST & VFX ABOUT DEEP SKY STUDIOS Passion for design. Creativity at the core. Welcome to Deep Sky Studios. We are designers, illustrators, animators, editors, producers and

More information

Office of Admissions. 110 Meyerson Hall Philadelphia, PA 19104-6311 TIME BASED AND INTERACTIVE MEDIA CERTIFICATE PROGRAM

Office of Admissions. 110 Meyerson Hall Philadelphia, PA 19104-6311 TIME BASED AND INTERACTIVE MEDIA CERTIFICATE PROGRAM Office of Admissions 110 Meyerson Hall Philadelphia, PA 19104-6311 TIME BASED AND INTERACTIVE MEDIA CERTIFICATE PROGRAM The Time Based and Interactive Media Certificate Program is suited for graduate students

More information

CalArts Academic Assessment Plan

CalArts Academic Assessment Plan CalArts Academic Assessment Plan School: Theater Program: Acting Degree(s): BFA, MFA Last revised by: Nataki Garrett Revision date: April 2014 I. Program Description The Acting Program at CalArts offers

More information

MODESTO CITY SCHOOLS COURSE OUTLINE. MEETS GRADUATION REQUIREMENTS: Practical Arts and/or Computer Literacy

MODESTO CITY SCHOOLS COURSE OUTLINE. MEETS GRADUATION REQUIREMENTS: Practical Arts and/or Computer Literacy MODESTO CITY SCHOOLS COURSE OUTLINE COURSE TITLE: Video Game Design COURSE NUMBER: 03810 RECOMMENDED GRADE LEVEL: 10-12 ABILITY LEVEL: Unsectioned DURATION: 2 semesters CREDIT: 5 units per semester GRADING

More information