Unity 3.x. Game Development Essentials. Game development with C# and Javascript PUBLISHING

Size: px
Start display at page:

Download "Unity 3.x. Game Development Essentials. Game development with C# and Javascript PUBLISHING"

Transcription

1 Unity 3.x Game Development Essentials Game development with C# and Javascript Build fully functional, professional 3D games with realistic environments, sound, dynamic effects, and more! Will Goldstone PUBLISHING BIRMINGHAM - MUMBAI

2 Preface 1 Chapter 1: Enter the Third Dimension 7 Getting to grips with 3D 7 Coordinates 8 Local space versus world space 9 Vectors 11 Cameras 11 Projection mode 3D versus 2D 11 Polygons, edges, vertices, and meshes 12 Materials, textures, and shaders 14 Rigidbody physics 15 Collision detection 16 Essential Unity concepts 17 The Unity way an example 18 Assets 19 Scenes 19 GameObjects 19 Components 20 Scripts 20 Prefabs 21 The interface 22 The Scene view and Hierarchy 23 Control tools 23 Flythrough Scene navigation 24 Control bar 24 Search box 25 Create button 25 The Inspector 25 The Project window 26

3 The Game view 27 Summary 28 Chapter 2: Prototyping and Scripting Basics 29 Your first Unity project 29 A basic prototyping environment 31 Setting the scene 32 Adding simple lighting 33 Another brick in the wall 34 Building the master brick 34 And snap! It's a row 36 Grouping and duplicating with empty objects 38 Build it up, knock it down! 39 Setting the viewpoint 39 Introducing scripting 39 A new behaviour script or 'class' 40 What's inside a new C# behaviour 41 Basic functions 42 Variables in C# 42 What's inside a new Javascript behaviour 43 Variables in Javascript 43 Comments 44 Wall attack 44 Declaring public variables 45 Assigning scripts to objects 46 Moving the camera 47 Local, private, and public variables 49 Understanding Translate 50 Implementing Translate 51 Testing the game so far 52 Making a projectile 53 Creating the projectile prefab 53 Creating and applying a material 54 Adding physics with a Rigidbody 55 Storing with prefabs 55 Firing the projectile 56 Using Instantiate!) to spawn objects 56 Adding a force to the Rigidbody 57 Summary 59 Chapter 3: Creating the Environment 61 Designing the game 61 Using the terrain editor 63 Terrain menu features 64 Importing and exporting heightmaps 64

4 Setting the resolution 64 Mass place trees 66 Flatten Heightmap 66 Refresh tree and detail prototypes 66 The terrain toolset 66 Terrain Script 66 Raise height 67 Paint height 68 Smooth Height 69 Paint Texture 70 Place Trees 70 Paint Details 71 Terrain Settings 71 Creating the island sun, sea, and sand 72 Step 1 Setting up the terrain 72 Step 2 Creating the Island outline 73 Step 3 Volcano! 74 Step 4 Adding textures 76 Step 5 Tree time 80 Step 6 The grass is always greener 81 Step 7 Let there be lights! 83 Step 8 What's that sound? 84 Step 9 Look, there! Up in the skybox! 87 Step 10 Open water 88 Step 11 Going walkabout 88 Step 12 Final tweaks 90 Summary 91 Chapter 4: Player Characters and Further Scripting 93 Working with the Inspector 94 Tags 95 Layers 96 Prefabs and the Inspector 97 Anatomy of a character 97 Deconstructing the First Person Controller object 99 Parent-child issues 99 First Person Controller object 100 Object 1: First Person Controller (parent) 100 Object 2: Graphics (child) 105 Object 3: Main Camera (child) 106 Further scripting 109 Commands 110 Variables 111 Variable data types 111 Using variables 112 Full example 114 Functions 115

5 UpdateO 115 OnMouseDown() 116 Writing custom functions 116 Return type 116 Arguments 117 Declaring a custom function 118 Calling a custom function 119 If else statements 121 Multiple conditions 123 For loops 124 Inter-script communication and Dot Syntax 125 Accessing other objects 125 Find() and FindWithTagO 126 SendMessage 126 GetComponent 127 Comments 130 Further reading 131 Scripting for character movement 131 Deconstructing the script 131 Full script (Javascript) 131 Variable declaration 132 Storing movement information 133 Moving the character 135 Checking grounded commands 137 Summary 137 Chapter 5: Interactions 139 External modeling applications 139 Common settings for models 140 Meshes 140 Normals and Tangents 141 Materials 142 Animations 142 Animation Compression 142 Setting up the outpost model 143 Adding the outpost 144 Positioning 144 Rotation 145 Adding colliders 145 Adding the Rigidbody 148 Adding audio 148 Disabling automatic animation 149 [iv]

6 Collisions and triggers 150 Ray casting 153 The frame miss 153 Predictive collision detection 154 Opening the outpost 156 Approach 1 Collision detection 156 Creating new assets 156 Scripting for character collision detection 157 Approach 2 Ray casting 172 Disabling collision detection with comments 172 Migrating code writing a DoorManager script 173 Tidying PlayerCollisions 175 Casting the ray 176 Resetting the collider 178 Approach 3 Trigger collision detection 179 Creating and scaling the trigger zone 179 Scripting for trigger collisions 182 Summary 184 Chapter 6: Collection, Inventory, and HUD 185 Creating the power cell prefab 187 Downloading, importing, and placing 188 Tagging the power cell 188 Collider scaling and rotation 189 Enlarging the power cell 189 Adding a trigger collider 189 Collider scale 189 Adding the Rigidbody 190 Creating the power cell script 190 Adding rotation 191 Adding Trigger Collision Detection 192 Saving as a prefab 193 Scattering power cells 193 Writing the Player Inventory 195 Saving the charge value 195 Setting the variable start value 196 Audio feedback 196 Adding the CellPickup() function 196 Adding the Inventory to the player 197 Restricting outpost access 198 Restricting door access with a cell counter 199 Displaying the power cell HUD 200 Import settings for GUI textures 201 Creating the GUITexture object 201 Positioning the PowerGUI texture 202 [v]

7 203 Scripting for texture swap 203 Understanding arrays 205 Adding the HUD array 206 Assigning textures to the array 207 Disabling the HUD for game start 208 Enabling the HUD during runtime 210 Adding the power generator 214 Signifying door unlock Adding the locked light 214 Switching lights and removing the HUD 2^ 217 Hints for the player Writing on screen with GUIText 217 Scripting for GUIText control 218 Adjusting hints to show progress 221 Using fonts Summary Chapter 7: Instantiation and Rigidbodies. Utilizing instantiation 226 Rigidbodies 227 Forces 227 The Rigidbody component 228 Making the mini-game 229 Creating the coconut prefab 230 Creating the textured coconut 230 Adding physics 231 Saving as a prefab 231 Creating the Launcher object 232 Scripting to throw coconuts 234 Checking for player input 236 Playing feedback sound 236 Instantiating the coconut Naming instances 238 Assigning velocity 239 Adding development safeguards 240 Final checks 245 Instantiate restriction and object tidying 246 Activating coconut throw 247 Adding the coconut shy shack 250 Import settings 250 Removing coconuts 252 Placement 256 Disabling automatic animation 256 Adding Rigidbodies to moving parts 257 Writing the Coconut collision detection script 257 Assigning the script 264 Creating more targets 265

8 Winning the game 266 Setting up variables 266 Checking for a win 267 Script assignment 269 Incrementing and decrementing target count 269 Finishing touches 271 Adding the crosshair 271 Informing the player 272 Summary 275 Chapter 8: Particle Systems 277 What is a particle system? 277 Particle Emitter 278 Particle Animator 278 Particle Renderer 279 Creating the task 280 Assets involved 280 Adding the log pile 281 Creating the campfire particle systems 283 Creating fire 283 Blowing smoke! 288 Adding audio to the fire 291 Lighting the fire 293 Adding the matches 293 Creating the matches GUI 296 Collecting the matches 296 Starting the fire 299 Testing and confirming 304 So, what's the problem? 304 Safeguarding with additional conditions 305 Summary 306 Chapter 9: Designing Menus 307 Interfaces and menus 308 Creating the scene 310 Duplicating the island 310 Preparing textures for GUI usage 312 Adding the game title 313 Creating the menu with GUITextures and mouse events 315 Adding the play button 315 GUITexture button script 315 Loading scenes 318 Assigning public variables 319 Testing the button 319 Adding the instructions button 320 [vii]

9 Adding the quit button 321 Checking scripts with Debug commands 324 Creating the menu with the Unity GUI class and GUI skins 325 Disabling game objects 326 Creating the menu 326 Creating public variables 327 The OnGUI() function 328 Positioning for GUIs 328 Styling GUI buttons with a GUI skin 332 Using textures for GUI button backgrounds 333 Choosing font size for GUI buttons 335 Scripting button actions 340 Adding the Instructions page 344 Summary 350 Chapter 10: Animation Basics 351 Game win sequence 351 Win sequence approach 353 Triggering the win 354 Creating the game win messages 354 Positioning win sequence GUI elements 355 Grouping GUITextures for optimized instantiation 355 Animating with linear interpolation (Lerp) 355 Adjusting animations 358 Storing the win sequence 358 Creating the win object 358 Creating the Fader and using the Animation panel 360 Scaling for various resolutions 361 Starting the Fader from invisibility 362 Animation panel overview 363 Creating an animation clip 364 Creating keyframes 364 Using animation curves 367 Adding animation events 368 Creating and animating the Loading GUI 370 Loading scenes with animation events 372 Storing and instantiating the Loading GUI 373 Loading the win sequence 373 Layering GUITextures 375 Challenge fading in the Island scene 375 Summary 376 Chapter 11: Performance Tweaks and Finishing Touches 377 Terrain tweaks and player position 378 Tweaking the terrain 378 Positioning trees 378

10 Hills, troughs, and texture blending 379 Life's a beach 380 Keep on the right path 380 Positioning the player 382 Optimizing performance 382 Camera Clip Planes and Fog 383 Lightmapping 384 Lighting and baking the island 384 Preparing for lightmapping 384 Baking the lightmap 389 Restoring dynamic objects 394 Finishing touches 394 Volcano! 394 Positioning the particle system 395 Making the smoke material 397 Particle system settings 397 Adding audio to the volcano 398 Volcano testing 399 Coconut trails 400 Editing the Prefab 400 Trail Renderer component 401 Updating the prefab 402 Summary 404 Chapter 12: Building and Sharing 405 Build options 406 Web Player 407 Web Player Streamed 407 PC or Mac standalone 408 OSX Dashboard Widget 408 Build Settings Player Settings Cross-Platform Settings 410 Per-Platform Settings 411 Quality Settings 415 Player Input settings 418 Building the game 419 Adapting for web build 419 Quit button platform automation 419 Preparing for streaming 421 First Build 427 Building the Standalone 427 Free versus Pro 428 Building for the Web 429 Embedding web player builds in your own site [ix]

11 Sharing your work 434 Sharing on Kongregate.com 434 Summary 435 Chapter 13: Testing and Further Study 437 Learn by doing 438 Testing and finalizing 438 Public testing 439 Frame rate feedback 439 Optimizing performance 442 Approaches to learning 443 Cover as many bases as possible 443 Don't reinvent the wheel 444 If you don't know, just ask! 444 Summary 445 Glossary This Glossary is not present in the book but is available as a free download from: http: // com/sites/default /files/downloads /144.40T Glossary_Final.pdf Index 447

Unity Game Development Essentials

Unity Game Development Essentials Unity Game Development Essentials Build fully functional, professional 3D games with realistic environments, sound, dynamic effects, and more! Will Goldstone 1- PUBLISHING -J BIRMINGHAM - MUMBAI Preface

More information

Beginning 3D Game Development with Unity:

Beginning 3D Game Development with Unity: Beginning 3D Game Development with Unity: The World's Most Widely Used Multi-platform Game Engine Sue Blackman Apress* Contents About the Author About the Technical Reviewer Acknowledgments Introduction

More information

Experiment 02 Interaction Objects

Experiment 02 Interaction Objects Experiment 02 Interaction Objects Table of Contents Introduction...1 Prerequisites...1 Setup...1 Player Stats...2 Enemy Entities...4 Enemy Generators...9 Object Tags...14 Projectile Collision...16 Enemy

More information

The purpose of this document is to outline the structure and tools that come with FPS Control.

The purpose of this document is to outline the structure and tools that come with FPS Control. FPS Control beta 4.1 Reference Manual Purpose The purpose of this document is to outline the structure and tools that come with FPS Control. Required Software FPS Control Beta4 uses Unity 4. You can download

More information

Space Invadersesque 2D shooter

Space Invadersesque 2D shooter Space Invadersesque 2D shooter So, we re going to create another classic game here, one of space invaders, this assumes some basic 2D knowledge and is one in a beginning 2D game series of shorts. All in

More information

COMPASS NAVIGATOR PRO QUICK START GUIDE

COMPASS NAVIGATOR PRO QUICK START GUIDE COMPASS NAVIGATOR PRO QUICK START GUIDE Contents Introduction... 3 Quick Start... 3 Inspector Settings... 4 Compass Bar Settings... 5 POIs Settings... 6 Title and Text Settings... 6 Mini-Map Settings...

More information

Instructions for using Object Collection and Trigger mechanics in Unity

Instructions for using Object Collection and Trigger mechanics in Unity Instructions for using Object Collection and Trigger mechanics in Unity Note for Unity 5 Jason Fritts jfritts@slu.edu In Unity 5, the developers dramatically changed the Character Controller scripts. Among

More information

Learn Unity by Creating a 3D Multi-Level Platformer Game

Learn Unity by Creating a 3D Multi-Level Platformer Game Learn Unity by Creating a 3D Multi-Level Platformer Game By Pablo Farias Navarro Certified Unity Developer and Founder of Zenva Table of Contents Introduction Tutorial requirements and project files Scene

More information

TATAKAI TACTICAL BATTLE FX FOR UNITY & UNITY PRO OFFICIAL DOCUMENTATION. latest update: 4/12/2013

TATAKAI TACTICAL BATTLE FX FOR UNITY & UNITY PRO OFFICIAL DOCUMENTATION. latest update: 4/12/2013 FOR UNITY & UNITY PRO OFFICIAL latest update: 4/12/2013 SPECIAL NOTICE : This documentation is still in the process of being written. If this document doesn t contain the information you need, please be

More information

3D Top Down Shooter By Jonay Rosales González AKA Don Barks Gheist

3D Top Down Shooter By Jonay Rosales González AKA Don Barks Gheist 3D Top Down Shooter By Jonay Rosales González AKA Don Barks Gheist This new version of the top down shooter gamekit let you help to make very adictive top down shooters in 3D that have made popular with

More information

Chapter 1:Object Interaction with Blueprints. Creating a project and the first level

Chapter 1:Object Interaction with Blueprints. Creating a project and the first level Chapter 1:Object Interaction with Blueprints Creating a project and the first level Setting a template for a new project Making sense of the project settings Creating the project 2 Adding objects to our

More information

Creating Bullets in Unity3D (vers. 4.2)

Creating Bullets in Unity3D (vers. 4.2) AD41700 Computer Games Prof. Fabian Winkler Fall 2013 Creating Bullets in Unity3D (vers. 4.2) I would like to preface this workshop with Celia Pearce s essay Beyond Shoot Your Friends (download from: http://www.gardensandmachines.com/ad41700/readings_f13/pearce2_pass.pdf)

More information

Beginning ios 3D Unreal

Beginning ios 3D Unreal Beginning ios 3D Unreal Games Development ' Robert Chin/ Apress* Contents Contents at a Glance About the Author About the Technical Reviewers Acknowledgments Introduction iii ix x xi xii Chapter 1: UDK

More information

By Chris Burton. User Manual v1.60.5

By Chris Burton. User Manual v1.60.5 By Chris Burton User Manual v1.60.5 Table of Contents Introduction 7 Chapter I: The Basics 1. 9 Setting up 10 1.1. Installation 1.2. Running the demo games 1.3. The Game Editor window 1.3.1. The New Game

More information

CMSC 425: Lecture 3 Introduction to Unity

CMSC 425: Lecture 3 Introduction to Unity CMSC 425: Lecture 3 Introduction to Unity Reading: For further information about Unity, see the online documentation, which can be found at http://docs.unity3d.com/manual/. The material on Unity scripts

More information

VR Easy Getting Started V1.3

VR Easy Getting Started V1.3 VR Easy Getting Started V1.3 Introduction Over the last several years, Virtual Reality (VR) has taken a huge leap in terms development and usage, especially to the tools and affordability that game engine

More information

INTRODUCTION TO GAME AI

INTRODUCTION TO GAME AI CS 387: GAME AI INTRODUCTION TO GAME AI 3/31/2016 Instructor: Santiago Ontañón santi@cs.drexel.edu Class website: https://www.cs.drexel.edu/~santi/teaching/2016/cs387/intro.html Outline Game Engines Perception

More information

First Steps in Unity3D

First Steps in Unity3D First Steps in Unity3D The Carousel 1. Getting Started With Unity 1.1. Once Unity is open select File->Open Project. 1.2. In the Browser navigate to the location where you have the Project folder and load

More information

True bullet 1.03 manual

True bullet 1.03 manual Introduction True bullet 1.03 manual The True bullet asset is a complete game, comprising a gun with very realistic bullet ballistics. The gun is meant to be used as a separate asset in any game that benefits

More information

Unity Certified Programmer

Unity Certified Programmer Unity Certified Programmer 1 unity3d.com The role Unity programming professionals focus on developing interactive applications using Unity. The Unity Programmer brings to life the vision for the application

More information

Adding in 3D Models and Animations

Adding in 3D Models and Animations Adding in 3D Models and Animations We ve got a fairly complete small game so far but it needs some models to make it look nice, this next set of tutorials will help improve this. They are all about importing

More information

A VIRTUAL TOUR OF THE MEDIANA ARCHEOLOGICAL PARK USING UNITY 3D ENGINE

A VIRTUAL TOUR OF THE MEDIANA ARCHEOLOGICAL PARK USING UNITY 3D ENGINE Преглед НЦД 27 (2015), 27 34 Đorđe Manoilov, Nikola Gajić, Miloš Stošić, Dušan Tatić Faculty of Electronic Engineering, Niš, Serbia A VIRTUAL TOUR OF THE MEDIANA ARCHEOLOGICAL PARK USING UNITY 3D ENGINE

More information

Crowd-steering behaviors Using the Fame Crowd Simulation API to manage crowds Exploring ANT-Op to create more goal-directed crowds

Crowd-steering behaviors Using the Fame Crowd Simulation API to manage crowds Exploring ANT-Op to create more goal-directed crowds In this chapter, you will learn how to build large crowds into your game. Instead of having the crowd members wander freely, like we did in the previous chapter, we will control the crowds better by giving

More information

The 8 th International Scientific Conference elearning and software for Education Bucharest, April 26-27, / X

The 8 th International Scientific Conference elearning and software for Education Bucharest, April 26-27, / X The 8 th International Scientific Conference elearning and software for Education Bucharest, April 26-27, 2012 10.5682/2066-026X-12-153 SOLUTIONS FOR DEVELOPING SCORM CONFORMANT SERIOUS GAMES Dragoş BĂRBIERU

More information

Save System for Realistic FPS Prefab. Copyright Pixel Crushers. All rights reserved. Realistic FPS Prefab Azuline Studios.

Save System for Realistic FPS Prefab. Copyright Pixel Crushers. All rights reserved. Realistic FPS Prefab Azuline Studios. User Guide v1.1 Save System for Realistic FPS Prefab Copyright Pixel Crushers. All rights reserved. Realistic FPS Prefab Azuline Studios. Contents Chapter 1: Welcome to Save System for RFPSP...4 How to

More information

PoolKit - For Unity.

PoolKit - For Unity. PoolKit - For Unity. www.unitygamesdevelopment.co.uk Created By Melli Georgiou 2018 Hell Tap Entertainment LTD The ultimate system for professional and modern object pooling, spawning and despawning. Table

More information

Ball Color Switch. Game document and tutorial

Ball Color Switch. Game document and tutorial Ball Color Switch Game document and tutorial This template is ready for release. It is optimized for mobile (iphone, ipad, Android, Windows Mobile) standalone (Windows PC and Mac OSX), web player and webgl.

More information

Foreword Thank you for purchasing the Motion Controller!

Foreword Thank you for purchasing the Motion Controller! Foreword Thank you for purchasing the Motion Controller! I m an independent developer and your feedback and support really means a lot to me. Please don t ever hesitate to contact me if you have a question,

More information

Introduction. Modding Kit Feature List

Introduction. Modding Kit Feature List Introduction Welcome to the Modding Guide of Might and Magic X - Legacy. This document provides you with an overview of several content creation tools and data formats. With this information and the resources

More information

Macquarie University Introductory Unity3D Workshop

Macquarie University Introductory Unity3D Workshop Overview Macquarie University Introductory Unity3D Workshop Unity3D - is a commercial game development environment used by many studios who publish on iphone, Android, PC/Mac and the consoles (i.e. Wii,

More information

Shoot It Game Template - 1. Tornado Bandits Studio Shoot It Game Template - Documentation.

Shoot It Game Template - 1. Tornado Bandits Studio Shoot It Game Template - Documentation. Shoot It Game Template - 1 Tornado Bandits Studio Shoot It Game Template - Documentation Shoot It Game Template - 2 Summary Introduction 4 Game s stages 4 Project s structure 6 Setting the up the project

More information

..... l ss t h t an an $100,000 of 000 of ann an u n al u al gross r evenu n e

..... l ss t h t an an $100,000 of 000 of ann an u n al u al gross r evenu n e Outline Introduction to Game Programming Autumn 2016 3. Game architecture case Unity game engine Juha Vihavainen University of Helsinki Basic concepts and architecture of Unity On origins/developments

More information

Appendix A ACE exam objectives map

Appendix A ACE exam objectives map A 1 Appendix A ACE exam objectives map This appendix covers these additional topics: A ACE exam objectives for Photoshop CS6, with references to corresponding coverage in ILT Series courseware. A 2 Photoshop

More information

Workshop 4: Digital Media By Daniel Crippa

Workshop 4: Digital Media By Daniel Crippa Topics Covered Workshop 4: Digital Media Workshop 4: Digital Media By Daniel Crippa 13/08/2018 Introduction to the Unity Engine Components (Rigidbodies, Colliders, etc.) Prefabs UI Tilemaps Game Design

More information

EVAC-CITY. Index. A starters guide to making a game like EVAC-CITY

EVAC-CITY. Index. A starters guide to making a game like EVAC-CITY EVAC-CITY A starters guide to making a game like EVAC-CITY Index Introduction...3 Programming - Character Movement...4 Programming - Character Animation...13 Programming - Enemy AI...18 Programming - Projectiles...22

More information

Heavy Station Kit base 2

Heavy Station Kit base 2 The huge loads are distributed on the strong support pillars, securing space for the bunker or the center of operations. This heavy looking interior/exterior/top-down Kit is made to suit extreme environments

More information

Installation Instructions

Installation Instructions Installation Instructions Important Notes: The latest version of Stencyl can be downloaded from: http://www.stencyl.com/download/ Available versions for Windows, Linux and Mac This guide is for Windows

More information

Spell Casting Motion Pack 8/23/2017

Spell Casting Motion Pack 8/23/2017 The Spell Casting Motion pack requires the following: Motion Controller v2.50 or higher Mixamo s free Pro Magic Pack (using Y Bot) Importing and running without these assets will generate errors! Why can

More information

Kings! Card Swiping Decision Game Asset

Kings! Card Swiping Decision Game Asset Kings! Card Swiping Decision Game Asset V 1.31 Thank you for purchasing this asset! If you encounter any errors / bugs, want to suggest new features/improvements or if anything is unclear (after you have

More information

Game Design Document (GDD)

Game Design Document (GDD) Game Design Document (GDD) (Title) Tower Defense Version: 1.0 Created: 5/9/13 Last Updated: 5/9/13 Contents Intro... 3 Gameplay Description... 3 Platform Information... 3 Artistic Style Outline... 3 Systematic

More information

Module 4 Build a Game

Module 4 Build a Game Module 4 Build a Game Game On 2 Game Instructions 3 Exercises 12 Look at Me 13 Exercises 15 I Can t Hear You! 17 Exercise 20 End of Module Quiz 20 2013 Lero Game On Design a Game When you start a programming

More information

Procedural Level Generation for a 2D Platformer

Procedural Level Generation for a 2D Platformer Procedural Level Generation for a 2D Platformer Brian Egana California Polytechnic State University, San Luis Obispo Computer Science Department June 2018 2018 Brian Egana 2 Introduction Procedural Content

More information

Catch The Kites A Lightweight Android Game

Catch The Kites A Lightweight Android Game Catch The Kites A Lightweight Android Game Submitted By Woaraka Been Mahbub ID: 2012-2-60-033 Md. Tanzir Ahasion ID: 2012-2-60-036 Supervised By Md. Shamsujjoha Senior Lecturer Department of Computer Science

More information

No Evidence. What am I Testing? Expected Outcomes Testing Method Actual Outcome Action Required

No Evidence. What am I Testing? Expected Outcomes Testing Method Actual Outcome Action Required No Evidence What am I Testing? Expected Outcomes Testing Method Actual Outcome Action Required If a game win is triggered if the player wins. If the ship noise triggered when the player loses. If the sound

More information

Z-Town Design Document

Z-Town Design Document Z-Town Design Document Development Team: Cameron Jett: Content Designer Ryan Southard: Systems Designer Drew Switzer:Content Designer Ben Trivett: World Designer 1 Table of Contents Introduction / Overview...3

More information

Game Design Document. RELEASE December 18, Austin Krauss

Game Design Document. RELEASE December 18, Austin Krauss Game Design Document RELEASE December 18, 2003 Table of Contents Disclaimer...- 1 - Game Overview...- 1 - How should the game be unique?...- 1 - How is it different from other games?...- 1 - What sort

More information

Open World Virtual Reality Role Playing Game

Open World Virtual Reality Role Playing Game The University of Hong Kong Bachelor of Engineering (Computer Science) COMP 4801 Final Year Project Final Report - Individual Open World Virtual Reality Role Playing Game Supervisor Dr. T.W. Chim Submission

More information

While entry is at the discretion of the centre, it would be beneficial if candidates had the following IT skills:

While entry is at the discretion of the centre, it would be beneficial if candidates had the following IT skills: National Unit Specification: general information CODE F916 10 SUMMARY The aim of this Unit is for candidates to gain an understanding of the different types of media assets required for developing a computer

More information

CS Game Programming, Fall 2014

CS Game Programming, Fall 2014 CS 38101 Game Programming, Fall 2014 Recommended Text Learn Unity 4 for ios Game Development, Philip Chu, 2013, Apress, ISBN-13 (pbk): 978-1-4302-4875-0 ISBN-13 (electronic): 978-1-4302-4876-7, www.apress.com.

More information

Mastering Autodesk Navisworks 2013

Mastering Autodesk Navisworks 2013 Mastering Autodesk Navisworks 2013 Dodds, J ISBN-13: 9781118281710 Table of Contents Foreword xvii Introduction xix Part 1 Navisworks Basics 1 Chapter 1 Getting to Know Autodesk Navisworks 3 Interface

More information

Warmup Due: Feb. 6, 2018

Warmup Due: Feb. 6, 2018 CS1950U Topics in 3D Game Engine Development Barbara Meier Warmup Due: Feb. 6, 2018 Introduction Welcome to CS1950U! In this assignment you ll be creating the basic framework of the game engine you will

More information

VACUUM MARAUDERS V1.0

VACUUM MARAUDERS V1.0 VACUUM MARAUDERS V1.0 2008 PAUL KNICKERBOCKER FOR LANE COMMUNITY COLLEGE In this game we will learn the basics of the Game Maker Interface and implement a very basic action game similar to Space Invaders.

More information

The Archery Motion pack requires the following: Motion Controller v2.23 or higher. Mixamo s free Pro Longbow Pack (using Y Bot)

The Archery Motion pack requires the following: Motion Controller v2.23 or higher. Mixamo s free Pro Longbow Pack (using Y Bot) The Archery Motion pack requires the following: Motion Controller v2.23 or higher Mixamo s free Pro Longbow Pack (using Y Bot) Importing and running without these assets will generate errors! Demo Quick

More information

Annex IV - Stencyl Tutorial

Annex IV - Stencyl Tutorial Annex IV - Stencyl Tutorial This short, hands-on tutorial will walk you through the steps needed to create a simple platformer using premade content, so that you can become familiar with the main parts

More information

Slime VISIT FOR THE LATEST UPDATES, FORUMS & MORE ASSETS.

Slime VISIT   FOR THE LATEST UPDATES, FORUMS & MORE ASSETS. Slime VISIT WWW.INFINITYPBR.COM FOR THE LATEST UPDATES, FORUMS & MORE ASSETS. 1. INTRODUCTION 2. QUICK SET UP 3. PROCEDURAL VALUES 4. SCRIPTING 5. ANIMATIONS 6. LEVEL OF DETAIL 7. CHANGE LOG Please leave

More information

3D VR Puzzle for Anatomy Education

3D VR Puzzle for Anatomy Education Department of Simulation and Graphics Report for Scientific Individual Project 3D VR Puzzle for Anatomy Education Revision: 1.0 Asema Hassan 210492 14.10.2016 Supervisor: Patrick Saalfeld, M.Sc. Prof.

More information

12. Creating a Product Mockup in Perspective

12. Creating a Product Mockup in Perspective 12. Creating a Product Mockup in Perspective Lesson overview In this lesson, you ll learn how to do the following: Understand perspective drawing. Use grid presets. Adjust the perspective grid. Draw and

More information

LabVIEW 8" Student Edition

LabVIEW 8 Student Edition LabVIEW 8" Student Edition Robert H. Bishop The University of Texas at Austin PEARSON Prentice Hall Upper Saddle River, NJ 07458 CONTENTS Preface xvii LabVIEW Basics 1.1 System Configuration Requirements

More information

Project 1: Game of Bricks

Project 1: Game of Bricks Project 1: Game of Bricks Game Description This is a game you play with a ball and a flat paddle. A number of bricks are lined up at the top of the screen. As the ball bounces up and down you use the paddle

More information

Gaia is a system that enables rapid and precise creation of gorgeous looking Unity terrains. Version March 2016 GAIA. By Procedural Worlds

Gaia is a system that enables rapid and precise creation of gorgeous looking Unity terrains. Version March 2016 GAIA. By Procedural Worlds Gaia is a system that enables rapid and precise creation of gorgeous looking Unity terrains. Version 1.5.3 March 2016 GAIA By Procedural Worlds Quick Start 1. Create a new project and import Gaia. 2. Unity

More information

Control Systems in Unity

Control Systems in Unity Unity has an interesting way of implementing controls that may work differently to how you expect but helps foster Unity s cross platform nature. It hides the implementation of these through buttons and

More information

Section 39: BobmerMan How-To

Section 39: BobmerMan How-To Section 39: BobmerMan How-To 1. Getting Started 1. Download, unzip, and open the Starter files 2. Test it out 2. Dropping Bombs 1. Edit the script file Player.cs 1. Edit the method DropBomb(), inside the

More information

Gesture Control FPS Horror/Survivor Game Third Year Project (COMP30040)

Gesture Control FPS Horror/Survivor Game Third Year Project (COMP30040) Gesture Control FPS Horror/Survivor Game Third Year Project (COMP30040) Student: Georgios Hadjitofallis Degree Program: BSc Computer Science Supervisor: Dr. Steve Pettifer The University of Manchester

More information

Sword & Shield Motion Pack 11/28/2017

Sword & Shield Motion Pack 11/28/2017 The Sword and Shield Motion pack requires the following: Motion Controller v2.6 or higher Mixamo s free Pro Sword and Shield Pack (using Y Bot) Importing and running without these assets will generate

More information

6. Graphics MULTIMEDIA & GRAPHICS 10/12/2016 CHAPTER. Graphics covers wide range of pictorial representations. Uses for computer graphics include:

6. Graphics MULTIMEDIA & GRAPHICS 10/12/2016 CHAPTER. Graphics covers wide range of pictorial representations. Uses for computer graphics include: CHAPTER 6. Graphics MULTIMEDIA & GRAPHICS Graphics covers wide range of pictorial representations. Uses for computer graphics include: Buttons Charts Diagrams Animated images 2 1 MULTIMEDIA GRAPHICS Challenges

More information

2D Platform. Table of Contents

2D Platform. Table of Contents 2D Platform Table of Contents 1. Making the Main Character 2. Making the Main Character Move 3. Making a Platform 4. Making a Room 5. Making the Main Character Jump 6. Making a Chaser 7. Setting Lives

More information

House Design Tutorial

House Design Tutorial House Design Tutorial This House Design Tutorial shows you how to get started on a design project. The tutorials that follow continue with the same plan. When you are finished, you will have created a

More information

Sensible Chuckle SuperTuxKart Concrete Architecture Report

Sensible Chuckle SuperTuxKart Concrete Architecture Report Sensible Chuckle SuperTuxKart Concrete Architecture Report Sam Strike - 10152402 Ben Mitchell - 10151495 Alex Mersereau - 10152885 Will Gervais - 10056247 David Cho - 10056519 Michael Spiering Table of

More information

Creating a First Person Shooter (FPS) Part 2

Creating a First Person Shooter (FPS) Part 2 Creating a First Person Shooter (FPS) Part 2 Author: Graham McAllister Revised by: Jeff Aydelotte & Amir Ebrahimi Time to complete: 3 4 hours Last Revision: 10 July 2009 Contents 1. Part 2: Enhancements

More information

Unreal Studio Project Template

Unreal Studio Project Template Unreal Studio Project Template Product Viewer What is the Product Viewer project template? This is a project template which grants the ability to use Unreal as a design review tool, allowing you to see

More information

AngkorVR. Advanced Practical Richard Schönpflug and Philipp Rettig

AngkorVR. Advanced Practical Richard Schönpflug and Philipp Rettig AngkorVR Advanced Practical Richard Schönpflug and Philipp Rettig Advanced Practical Tasks Virtual exploration of the Angkor Wat temple complex Based on Pheakdey Nguonphan's Thesis called "Computer Modeling,

More information

SteamVR Unity Plugin Quickstart Guide

SteamVR Unity Plugin Quickstart Guide The SteamVR Unity plugin comes in three different versions depending on which version of Unity is used to download it. 1) v4 - For use with Unity version 4.x (tested going back to 4.6.8f1) 2) v5 - For

More information

"!" - Game Modding and Development Kit (A Work Nearly Done) '08-'10. Asset Browser

! - Game Modding and Development Kit (A Work Nearly Done) '08-'10. Asset Browser "!" - Game Modding and Development Kit (A Work Nearly Done) '08-'10 Asset Browser Zoom Image WoW inspired side-scrolling action RPG game modding and development environment Built in Flash using Adobe Air

More information

Attack of Township. Moniruzzaman, Md. Daffodil International University Institutional Repository Daffodil International University

Attack of Township. Moniruzzaman, Md. Daffodil International University Institutional Repository Daffodil International University Daffodil International University Institutional Repository Computer Science and Engineering Project Report of M.Sc 2018-05 Attack of Township Moniruzzaman, Md Daffodil International University http://hdl.handle.net/20.500.11948/2705

More information

Concrete Architecture of SuperTuxKart

Concrete Architecture of SuperTuxKart Concrete Architecture of SuperTuxKart Team Neo-Tux Latifa Azzam - 10100517 Zainab Bello - 10147946 Yuen Ting Lai (Phoebe) - 10145704 Jia Yue Sun (Selena) - 10152968 Shirley (Xue) Xiao - 10145624 Wanyu

More information

GAME:IT Junior Bouncing Ball

GAME:IT Junior Bouncing Ball GAME:IT Junior Bouncing Ball Objectives: Create Sprites Create Sounds Create Objects Create Room Program simple game All games need sprites (which are just pictures) that, in of themselves, do nothing.

More information

Chapter 7- Lighting & Cameras

Chapter 7- Lighting & Cameras Chapter 7- Lighting & Cameras Cameras: By default, your scene already has one camera and that is usually all you need, but on occasion you may wish to add more cameras. You add more cameras by hitting

More information

UNITY TECHNOLOGY ROADMAP

UNITY TECHNOLOGY ROADMAP UNITY TECHNOLOGY ROADMAP COPYRIGHT 2015 @ UNITY TECHNOLOGIES Good Afternoon and welcome to the Unity Technology Roadmap Discussion. Objectives Decide if upcoming releases are right for your project Understand

More information

How to Make Games in MakeCode Arcade Created by Isaac Wellish. Last updated on :10:15 PM UTC

How to Make Games in MakeCode Arcade Created by Isaac Wellish. Last updated on :10:15 PM UTC How to Make Games in MakeCode Arcade Created by Isaac Wellish Last updated on 2019-04-04 07:10:15 PM UTC Overview Get your joysticks ready, we're throwing an arcade party with games designed by you & me!

More information

An Approach to Maze Generation AI, and Pathfinding in a Simple Horror Game

An Approach to Maze Generation AI, and Pathfinding in a Simple Horror Game An Approach to Maze Generation AI, and Pathfinding in a Simple Horror Game Matthew Cooke and Aaron Uthayagumaran McGill University I. Introduction We set out to create a game that utilized many fundamental

More information

Kismet Interface Overview

Kismet Interface Overview The following tutorial will cover an in depth overview of the benefits, features, and functionality within Unreal s node based scripting editor, Kismet. This document will cover an interface overview;

More information

Tutorial Guide to AutoCAD 2014

Tutorial Guide to AutoCAD 2014 Tutorial Guide to AutoCAD 2014 2D Drawing, 3D Modeling Shawna Lockhart SDC P U B L I C AT I O N S For Microsoft Windows Better Textbooks. Lower Prices. www.sdcpublications.com Visit the following websites

More information

This guide will cover the basics of base building, we will be using only the default recipes every character starts out with.

This guide will cover the basics of base building, we will be using only the default recipes every character starts out with. Basebuilding Guide Basic base building guide. This guide will cover the basics of base building, we will be using only the default recipes every character starts out with. The base building in Miscreated

More information

Making Your World with the Aurora Toolset

Making Your World with the Aurora Toolset Making Your World with the Aurora Toolset The goal of this tutorial is to build a very simple module to ensure that you've picked up the necessary skills for the other tutorials. After completing this

More information

Tutorial Guide to AutoCAD 2013

Tutorial Guide to AutoCAD 2013 Tutorial Guide to AutoCAD 2013 2D Drawing, 3D Modeling Shawna Lockhart SDC P U B L I C AT I O N S Schroff Development Corporation For Microsoft Windows Better Textbooks. Lower Prices. www.sdcpublications.com

More information

DESIGN A SHOOTING STYLE GAME IN FLASH 8

DESIGN A SHOOTING STYLE GAME IN FLASH 8 DESIGN A SHOOTING STYLE GAME IN FLASH 8 In this tutorial, you will learn how to make a basic arcade style shooting game in Flash 8. An example of the type of game you will create is the game Mozzie Blitz

More information

Motion Blur with Mental Ray

Motion Blur with Mental Ray Motion Blur with Mental Ray In this tutorial we are going to take a look at the settings and what they do for us in using Motion Blur with the Mental Ray renderer that comes with 3D Studio. For this little

More information

Overview. The Game Idea

Overview. The Game Idea Page 1 of 19 Overview Even though GameMaker:Studio is easy to use, getting the hang of it can be a bit difficult at first, especially if you have had no prior experience of programming. This tutorial is

More information

Game Design Document. Plataforms: Platformer / Puzzle

Game Design Document. Plataforms: Platformer / Puzzle Plataforms: Genre: Platformer / Puzzle Target Audience: Young / Adult 1 CONTENTS 2 VISUAL APPEAL... 3 2.1 Character Appeal... 3 2.2 Lighting and effects animation... 3 3 INOVATION... 4 3.1 Technical...

More information

Tutorial Guide to AutoCAD 2015

Tutorial Guide to AutoCAD 2015 Tutorial Guide to AutoCAD 2015 2D Drawing, 3D Modeling Shawna Lockhart SDC P U B L I C AT I O N S For Microsoft Windows Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org)

More information

Pangolin: A Look at the Conceptual Architecture of SuperTuxKart. Caleb Aikens Russell Dawes Mohammed Gasmallah Leonard Ha Vincent Hung Joseph Landy

Pangolin: A Look at the Conceptual Architecture of SuperTuxKart. Caleb Aikens Russell Dawes Mohammed Gasmallah Leonard Ha Vincent Hung Joseph Landy Pangolin: A Look at the Conceptual Architecture of SuperTuxKart Caleb Aikens Russell Dawes Mohammed Gasmallah Leonard Ha Vincent Hung Joseph Landy Abstract This report will be taking a look at the conceptual

More information

An Implementation and Usability Study of a Natural User Interface Virtual Piano

An Implementation and Usability Study of a Natural User Interface Virtual Piano The University of Akron IdeaExchange@UAkron Honors Research Projects The Dr. Gary B. and Pamela S. Williams Honors College Spring 2018 An Implementation and Usability Study of a Natural User Interface

More information

House Design Tutorial

House Design Tutorial Chapter 2: House Design Tutorial This House Design Tutorial shows you how to get started on a design project. The tutorials that follow continue with the same plan. When you are finished, you will have

More information

RPG CREATOR QUICKSTART

RPG CREATOR QUICKSTART INTRODUCTION RPG CREATOR QUICKSTART So you've downloaded the program, opened it up, and are seeing the Engine for the first time. RPG Creator is not hard to use, but at first glance, there is so much to

More information

Easy Input For Gear VR Documentation. Table of Contents

Easy Input For Gear VR Documentation. Table of Contents Easy Input For Gear VR Documentation Table of Contents Setup Prerequisites Fresh Scene from Scratch In Editor Keyboard/Mouse Mappings Using Model from Oculus SDK Components Easy Input Helper Pointers Standard

More information

Game Design Comp 150GD. Michael Shah 3/6/15

Game Design Comp 150GD. Michael Shah 3/6/15 Game Design Comp 150GD Michael Shah 3/6/15 Topics 1. Digital Game Testing 2. C# Scripting Tips 3. GUI 4. Music Room Part 1 - Digital Game Testing PLAYTEST ROUND #3 (20 minutes): 1. Observers stay to manage

More information

Evaluating Performance of Point and Shoot in Bow and Arrow Shoot Mobile Game: Touch, Swipe, Rotate, Artificial Intelligence

Evaluating Performance of Point and Shoot in Bow and Arrow Shoot Mobile Game: Touch, Swipe, Rotate, Artificial Intelligence Evaluating Performance of Point and Shoot in Bow and Arrow Shoot Mobile Game: Touch, Swipe, Rotate, Artificial Intelligence 1 Aishwarya S. Pagare, 2 Karishma K. Khairnar, 3 Suruchi R. Kharat, 4 Pooja S.

More information

Modo VR Technical Preview User Guide

Modo VR Technical Preview User Guide Modo VR Technical Preview User Guide Copyright 2018 The Foundry Visionmongers Ltd Introduction 2 Specifications, Installation, and Setup 2 Machine Specifications 2 Installing 3 Modo VR 3 SteamVR 3 Oculus

More information

Fundamental Game Systems Implemented in Unreal Engine 4 For Use With or Without Oculus Rift

Fundamental Game Systems Implemented in Unreal Engine 4 For Use With or Without Oculus Rift Fundamental Game Systems Implemented in Unreal Engine 4 For Use With or Without Oculus Rift Documentation of an Honours Project for Carleton University Comp 4905 Written by Matthew Imtiaz for Wilf LaLonde

More information