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

Size: px
Start display at page:

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

Transcription

1 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 games like Minigore and Guerilla Bob. This package will help you to shorten the development period of your game the maximum possible, with almost 1500 lines of code divided in 38 Scripts that includes: 2 Types of player control: Typical Top Down Shooter and over-the-top third person shooter (Like ShadowGrounds games). 2 Game Modes: Stage Mode and Survival Mode, Including a Bonus Level too (Only added in Stage Mode). A fully Customizable AI with a large variety of parameters, that allows the enemies various types of actions like melee attack, shooting or jump over the player, between others... A Simple but very effective Spawn Director, that allows spawn enemies and items too. Five Weapons divided in 3 types of shoot: Proyectiles, particles(flamethrower) and explosives. An arcade-like Stage Clear Scene. Dozens of global variables for gameplay seetings and player stats. 5 types of items and a enemy loot script that let you configure the drop item game of every type of enemy(prefab = type of enemy). And much more...

2 Package Content: 3 test scenes: Control Type 1, Control Type 2 and Stage Clear. All necesary art resources for prototyping. 38 ready to use scripts: AI: AI Animation Behaviour: 3D Animation Behaviour Example for use with the player control (44 Lines of Code). AI Enemy Animation Behaviour: 3D Animation Behaviour Example for use with Enemies and AI Scripts(42 Lines of Code) AI Script: Main AI Script for Enemies(178 Lines of Code). Character Life Meter: Health and Death properties for Player and Enemies(111 Lines of Code) Tridimensional Character Rotation: provide various rotation types for Enemy Behaviour (Chase, aiming and no rotation for dead state).(44 lineas de codigo). Camera: Mouse Look: script provided by Unity Editor (86 Lines of code) Smooth Follow: script provided by Unity Editor (57 Lines of code) Control: Character Move: Movement script for the over the top third person shooter Control Type (54 Lines of Code). Character Move 2: Movement script for the classic Top Down View Control Type(71 Lines of Code). Character Rotation: Aiming Script for Top Down View Control Type (10 Lines of Code) Shoot: Shoot script for proyectile weapons(127 Lines of Code) Shoot2: Shoot script for particle based weapons(40 Lines of Code) Shoot3: Shoot script for explosive weapons(24 Lines of Code) Debug: Take ScreenShot: Takes a Screenshot and save it in the data path(7 Lines of Code). Gameplay: Loot: Make the enemy drops an item or not(8 Lines of Code) Pickup Medkit: restore character Life(9 Lines of Code) Pickup Shotgun: Add Shotgun Ammo or activate the shotgun use(9 Lines of Code) Pickup Minigun: Add Minigun Ammo or activate the minigun use(9 Lines of Code) Pickup Grenades: Add Grenade Launcher Ammo or activate the Grenade Launcher use(9 Lines of Code) Pickup FlameThrower: Add FlameThrower Ammo or activate the FlameThrower use(9 Lines of Code) Spawn Enemy: Enemy and Items Spawn Director(77 Lines of Code). Zombie Game: Game Director Script (20 Lines of Code). Globals: GameplayGlobals: A great number of global variables and function that control the gameplay(44 Lines of Code). GlobalStats: global variables and functions for player stats, perfect for use in web player games(12 Lines of Code). Graphics: BulletTray: Bullet Behaviour Script(28 Lines of Code).

3 Light Pulse: Simple Flickering light script(16 Lines of Code). Random Texture: Select a Texture randomly for the model and apply normal map if exists(12 Lines of Code). ShotGunShellTray: ShotGun Shells Behaviour Script(27 Lines of Code). ShotLight: Muzzleflash Light(6 Lines of Code). GUI: All the GUI Script are for debbuging purposes except: Level Completed: Activate the Bonus Stage when the objectives in stage mode are completed(15 Lines of Code). Level Cleared: Applies Level Bonus Score and Show Player Stats in the Stage Clear Scene, Once Cleared a Stage(55 Lines of Code). Physics: OnCollisionInstance: Instance an object once the game objects collides and disappear(13 Lines of Code). Explosion-Simple: Explosion Script adapted for this gamekit(39 Lines of Code)

4 Gamekit and Scene SET-UP Game Base Set-up: 1. Drag and Drop the prefabs Director and GUI in the Hierarchy. 2. Let s see first the most important components attached in the GUI prefab s children. 3. In Info prefab, We ve got the Level Completed Script, that allows start a bonus stage once completed your objetive in stage mode. The only one parameter that it have is the Overtime, that determines the time that the Bonus Level Have before the bonus level ends and goes to the level clear scene. 4. Once configured this script. Let s go to Set up the Director Prefab

5 5. Here we have (the wrongly called) Enemy Spawn script. 6. Isspawning let you activate or not the spawn process. In Item Spawnpoint put the game object (places) where the items will spawn. Put your enemies and objects prefabs in Enemyprefab and itemprefab respectively. If you want make spawnpoints for enemies, simply create an empty object and put the tag EnemySpawn on it. Remember that Zombie Game script must be in Director Prefab. 7. Let s pay attention now to the Global Variables that have the gameplay process that you can configure freely.

6 8. Enemy Limit controls the maximum number of enemies on the scene. ToNextStageKills determines the minimum number of enemies that you must kill for complete the stage s objetive. SurvivalMode let you change between the 2 game modes. 9. Now the game base is completely Setted up, let s set up the Player and Enemies

7 Character Set-Up: Use the prefabs and example scenes added on the pack for learn how to implement your charcter to the respective control set-ups.

8 Enemies Set Up: No enemies examples are added to the pack, so in this section you ll learn how to configure your enemies with the scripts added in this pack:

9 1. Create a new GameObject and name it as you like, this will be the main enemy controller 2. Add the Character Controller Component. 3. Add the next scripts: CharacterLifeMeter, AIScript and (optional) LootScript and set up all except the AI Script(We ll set up later...) and the Deathanimationindex parameter of CharcterLifeMeter script. 4. now let s add our enemy skinned and animated mesh as a child game object of the previous one we ve created. 5. Set up the animations that the enemy will have 6. add to this game object your custom AIEnemyBehaviour script (see the example AIEnemyBehaviour Script included on the package as reference) and the TridimensionalCharacterRotation script.

10 7. (Optional) in the children game object where the skinned renderer component is, add and set up the random texture script.

11 8. Back to the father game object, configure the AI Script and CharacterLifeMeter as you wish and add the animations indexes, referencered on your AIEnemyBehaviour Script, in his respectives animation types.

12 9. Now these f***ers are ready to kill you

13 Known Issues(Will be fixed on the next update): Enemy AI haven t got Object Avoidance. The Top-Down-Shooter control need some little fixes on the animation behaviour, maybe the strafe and diagonals movement don t behave as they must in certain circumstances.

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

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

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

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

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

Unity 3.x. Game Development Essentials. Game development with C# and Javascript PUBLISHING 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

More information

Game demo First project with UE Tom Guillermin

Game demo First project with UE Tom Guillermin Game demo Information page, videos and download links: https://www.tomsdev.com/ue zombinvasion/ Presentation Goal: kill as many zombies as you can. Gather boards in order to place defenses and triggers

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

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

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

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

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

FPS Assignment Call of Duty 4

FPS Assignment Call of Duty 4 FPS Assignment Call of Duty 4 Name of Game: Call of Duty 4 2007 Platform: PC Description of Game: This is a first person combat shooter and is designed to put the player into a combat environment. The

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

-- Darkseekers -- Design Document Team Cobra: Mitchell Arthur Sean Burke Emilio Cantu Gerard Louis Aaron Russell Quan Yu

-- Darkseekers -- Design Document Team Cobra: Mitchell Arthur Sean Burke Emilio Cantu Gerard Louis Aaron Russell Quan Yu -- Darkseekers -- Design Document Team Cobra: Mitchell Arthur Sean Burke Emilio Cantu Gerard Louis Aaron Russell Quan Yu 1 Introduction Game State Diagram Game Mechanics Health Weapons Knife Revolver Sniper

More information

SPACEYARD SCRAPPERS 2-D GAME DESIGN DOCUMENT

SPACEYARD SCRAPPERS 2-D GAME DESIGN DOCUMENT SPACEYARD SCRAPPERS 2-D GAME DESIGN DOCUMENT Abstract This game design document describes the details for a Vertical Scrolling Shoot em up (AKA shump or STG) video game that will be based around concepts

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

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

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

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

Zombie bullet-hell with crazy characters & weapons

Zombie bullet-hell with crazy characters & weapons Zombie bullet-hell with crazy characters & weapons l A rotational twist on bullet-hell shooters l Survive wave after wave of zombies l Avoid perma-death and rescue new survivors l Purchase and upgrade

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

Quake III Fortress Game Review CIS 487

Quake III Fortress Game Review CIS 487 Quake III Fortress Game Review CIS 487 Jeff Lundberg September 23, 2002 jlundber@umich.edu Quake III Fortress : Game Review Basic Information Quake III Fortress is a remake of the original Team Fortress

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

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

"!" - 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

2014 DigiPen Institute of Technology 2013 Valve Corporation.

2014 DigiPen Institute of Technology 2013 Valve Corporation. 1Fort Special Delivery Components: - Board - Red and Blu Team o 1 of each class o 2 Rockets o 2 Grenades o 2 Sticky Bombs o 1 Turret o 2 Teleporters - 54 Health Tokens - 1 Australium Piece - 3 Health Pack

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

Cannon Ball User Manual

Cannon Ball User Manual Cannon Ball User Manual Darrell Westerinen Jae Kim Youngwouk Youn December 9, 2008 CSS 450 Kelvin Sung Cannon Ball: User Manual Page 2 of 8 Table of Contents GAMEPLAY:... 3 HERO - TANK... 3 CANNON BALL:...

More information

A retro space combat game by Chad Fillion. Chad Fillion Scripting for Interactivity ITGM 719: 5/13/13 Space Attack - Retro space shooter game

A retro space combat game by Chad Fillion. Chad Fillion Scripting for Interactivity ITGM 719: 5/13/13 Space Attack - Retro space shooter game A retro space combat game by Designed and developed as a throwback to the classic 80 s arcade games, Space Attack launches players into a galaxy of Alien enemies in an endurance race to attain the highest

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

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

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

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

Game Design Project 2, Part 3 Group #3 By: POLYHEDONISTS Brent Allard, Taylor Carter, Andrew Greco, Alex Nemeroff, Jessica Nguy

Game Design Project 2, Part 3 Group #3 By: POLYHEDONISTS Brent Allard, Taylor Carter, Andrew Greco, Alex Nemeroff, Jessica Nguy Game Design Project 2, Part 3 Group #3 By: POLYHEDONISTS Brent Allard, Taylor Carter, Andrew Greco, Alex Nemeroff, Jessica Nguy Concept Side scrolling beat-em-up Isometric perspective that implements 2D

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

Zombie Arcade. Team 7 Technical Report. Jonathan Halbrook Alvaro Juban Jr. Brandon Ware

Zombie Arcade. Team 7 Technical Report. Jonathan Halbrook Alvaro Juban Jr. Brandon Ware Zombie Arcade Team 7 Technical Report Jonathan Halbrook Alvaro Juban Jr. Brandon Ware Lifecycle For the lifecycle of the project we decided it was best to go with the spiral model. We started out deciding

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

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

StarForge Alpha Manual v0.3.5

StarForge Alpha Manual v0.3.5 StarForge Alpha Manual v0.3.5 Welcome to the StarForge Alpha. We are very happy to let you have early access to our game and we hope you enjoy it while we keep developing it. This manual covers some basics

More information

CS 354R: Computer Game Technology

CS 354R: Computer Game Technology CS 354R: Computer Game Technology Introduction to Game AI Fall 2018 What does the A stand for? 2 What is AI? AI is the control of every non-human entity in a game The other cars in a car game The opponents

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

Defenders of the Last Colony

Defenders of the Last Colony Defenders of the Last Colony User manual 1. Story 2. Controls 3. Constructions 4. Relics 5. Orbs 6. Aircraft Classes 6.1 Engineer 6.2 Carrier 6.3 Striker 6.4 Fighter Defenders of the Last Colony is a 2D

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

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

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

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

Top-Down Shooters DESMA 167B. TaeSung (Abraham) Roh

Top-Down Shooters DESMA 167B. TaeSung (Abraham) Roh Top-Down Shooters DESMA 167B TaeSung (Abraham) Roh P a g e 1 Tyrian PC (MS-DOS and Windows) Genre: Top-down vertical shooter. Multiple game modes including a 2 player arcade mode. Plot: Trent is a skilled

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

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

Information Guide. This Guide provides basic information about the Dead Trigger a new FPS action game from MADFINGER Games.

Information Guide. This Guide provides basic information about the Dead Trigger a new FPS action game from MADFINGER Games. Information Guide This Guide provides basic information about the Dead Trigger a new FPS action game from MADFINGER Games. Basic Info: Game Name: Dead Trigger Genre: FPS Action Target Platforms: ios, Android

More information

A tutorial on scripted sequences & custsenes creation

A tutorial on scripted sequences & custsenes creation A tutorial on scripted sequences & custsenes creation By Christian Clavet Setting up the scene This is a quick tutorial to explain how to use the entity named : «scripted-sequence» to be able to move a

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

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

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

GameSalad Basics. by J. Matthew Griffis

GameSalad Basics. by J. Matthew Griffis GameSalad Basics by J. Matthew Griffis [Click here to jump to Tips and Tricks!] General usage and terminology When we first open GameSalad we see something like this: Templates: GameSalad includes templates

More information

Our different time phases on the DADIU semester was as following:

Our different time phases on the DADIU semester was as following: Introduction: DADIU is the National Academy of digital interactive Entertainment and it is a institution with a collaboration between different universities. The universities have different roles depending

More information

Competitive Games: Playing Fair with Tanks

Competitive Games: Playing Fair with Tanks CHAPTER 10 Competitive Games: Playing Fair with Tanks Combat arenas are a popular theme in multiplayer games, because they create extremely compelling gameplay from very simple ingredients. This can often

More information

ADVANCED TOOLS AND TECHNIQUES: PAC-MAN GAME

ADVANCED TOOLS AND TECHNIQUES: PAC-MAN GAME ADVANCED TOOLS AND TECHNIQUES: PAC-MAN GAME For your next assignment you are going to create Pac-Man, the classic arcade game. The game play should be similar to the original game whereby the player controls

More information

Royale Politique. A funny game developed for the RV course - University of Pisa

Royale Politique. A funny game developed for the RV course - University of Pisa Royale Politique A funny game developed for the RV course - University of Pisa First of all Based on an idea matured during the last elections turn:

More information

Thank you for choosing Versus. This document contains information about playing the game on your computer.

Thank you for choosing Versus. This document contains information about playing the game on your computer. VERSUS SQUAD User Manual Copyright 2016 DiezelPower. All rights reserved. Contents This document contains information on the following topics: 1.0 Welcome 2.0 Features 3.0 User Manual 4.0 Controllers/Gamepads

More information

More Actions: A Galaxy of Possibilities

More Actions: A Galaxy of Possibilities CHAPTER 3 More Actions: A Galaxy of Possibilities We hope you enjoyed making Evil Clutches and that it gave you a sense of how easy Game Maker is to use. However, you can achieve so much with a bit more

More information

Create a benchmark mobile game! Tobias Tost Senior Programmer, Blue Byte GmbH A Ubisoft Studio

Create a benchmark mobile game! Tobias Tost Senior Programmer, Blue Byte GmbH A Ubisoft Studio Create a benchmark mobile game! Tobias Tost Senior Programmer, Blue Byte GmbH A Ubisoft Studio Who am I? Tobias Tost, MSc In the Games Industry since 2006 Visualization, Sound, Gameplay, Tools Joined Ubisoft

More information

Game Design Document TEQUILA RUMBLE. Group 10 Clash of Clans-like without village building

Game Design Document TEQUILA RUMBLE. Group 10 Clash of Clans-like without village building TEQUILA RUMBLE Game Design Document Group 10 Clash of Clans-like without village building Genre: Strategy game Plateform: Smartphone/tablet Target: 15-30 strategy players Online multiplayer Page 1/26 INDEX

More information

Toon Dimension Formal Game Proposal

Toon Dimension Formal Game Proposal Toon Dimension Formal Game Proposal Peter Bucher Christian Schulz Nicola Ranieri February, 2009 Table of contents 1. Game Description...1 1.1 Idea...1 1.2 Story...1 1.3 Gameplay...2 1.4 Implementation...2

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

Mage Arena will be aimed at casual gamers within the demographic.

Mage Arena will be aimed at casual gamers within the demographic. Contents Introduction... 2 Game Overview... 2 Genre... 2 Audience... 2 USP s... 2 Platform... 2 Core Gameplay... 2 Visual Style... 2 The Game... 3 Game mechanics... 3 Core Gameplay... 3 Characters/NPC

More information

JOURNAL OF OBJECT TECHNOLOGY

JOURNAL OF OBJECT TECHNOLOGY JOURNAL OF OBJECT TECHNOLOGY Online at www.jot.fm. Published by ETH Zurich, Chair of Software Engineering JOT, 2009 Vol. 8. No. 1, January-February 2009 First Person Shooter Game Rex Cason II Erik Larson

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

Game Maker Direction Between Two Points

Game Maker Direction Between Two Points Game Maker Direction Between Two Points I am trying to find a way to draw a line between one object and another 7 points (90% upvoted) /r/gamemaker hosts a 48-hour game design and development contest called

More information

CREATURE INVADERS DESIGN DOCUMENT VERSION 0.2 MAY 14, 2009

CREATURE INVADERS DESIGN DOCUMENT VERSION 0.2 MAY 14, 2009 L CREATURE INVADERS DESIGN DOCUMENT VERSION 0.2 MAY 14, 2009 INDEX VERSION HISTORY... 3 Version 0.1 May 5th, 2009... 3 GAME OVERVIEW... 3 Game logline... 3 Gameplay synopsis... 3 GAME DETAILS... 4 Description...

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

Creating Computer Games

Creating Computer Games By the end of this task I should know how to... 1) import graphics (background and sprites) into Scratch 2) make sprites move around the stage 3) create a scoring system using a variable. Creating Computer

More information

HERO++ DESIGN DOCUMENT. By Team CreditNoCredit VERSION 6. June 6, Del Davis Evan Harris Peter Luangrath Craig Nishina

HERO++ DESIGN DOCUMENT. By Team CreditNoCredit VERSION 6. June 6, Del Davis Evan Harris Peter Luangrath Craig Nishina HERO++ DESIGN DOCUMENT By Team CreditNoCredit Del Davis Evan Harris Peter Luangrath Craig Nishina VERSION 6 June 6, 2011 INDEX VERSION HISTORY 4 Version 0.1 April 9, 2009 4 GAME OVERVIEW 5 Game logline

More information

Ragnarok PS4 Flex Mod Chip Operation Instructions

Ragnarok PS4 Flex Mod Chip Operation Instructions www.viking360.com Introduction The Viking Ragnarok software platform was developed to make it easier for customers to mix and match mods, on the fly, without needing to scroll through massive numbers of

More information

15 TUBE CLEANER: A SIMPLE SHOOTING GAME

15 TUBE CLEANER: A SIMPLE SHOOTING GAME 15 TUBE CLEANER: A SIMPLE SHOOTING GAME Tube Cleaner was designed by Freid Lachnowicz. It is a simple shooter game that takes place in a tube. There are three kinds of enemies, and your goal is to collect

More information

Killzone Shadow Fall: Threading the Entity Update on PS4. Jorrit Rouwé Lead Game Tech, Guerrilla Games

Killzone Shadow Fall: Threading the Entity Update on PS4. Jorrit Rouwé Lead Game Tech, Guerrilla Games Killzone Shadow Fall: Threading the Entity Update on PS4 Jorrit Rouwé Lead Game Tech, Guerrilla Games Introduction Killzone Shadow Fall is a First Person Shooter PlayStation 4 launch title In SP up to

More information

In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours!

In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours! Memory Introduction In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours! Step 1: Random colours First, let s create a character that can change

More information

Welcome to the dark science fiction world of CTHON. This quick start guide will get you up to speed with the basics of the game.

Welcome to the dark science fiction world of CTHON. This quick start guide will get you up to speed with the basics of the game. CTHON QUICK START GUIDE OVERVIEW Welcome to the dark science fiction world of CTHON. This quick start guide will get you up to speed with the basics of the game. CTHON is a first-person shooter with roguelike

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

Cylinder of Zion. Design by Bart Vossen (100932) LD1 3D Level Design, Documentation version 1.0

Cylinder of Zion. Design by Bart Vossen (100932) LD1 3D Level Design, Documentation version 1.0 Cylinder of Zion Documentation version 1.0 Version 1.0 The document was finalized, checking and fixing minor errors. Version 0.4 The research section was added, the iterations section was finished and

More information

How to Zombie Guide Written by Luke Raymond Thiessen

How to Zombie Guide Written by Luke Raymond Thiessen How to Zombie Guide Written by Luke Raymond Thiessen Table of Contents 1.0 Game Terms... 3 2.0 Costumes... 3 3.0 Behavior... 3 4.0 Combat... 4 4.1 Basics... 4 4.2 Special Terms... 5 4.3 Infection... 6

More information

ADVANCED WHACK A MOLE VR

ADVANCED WHACK A MOLE VR ADVANCED WHACK A MOLE VR Tal Pilo, Or Gitli and Mirit Alush TABLE OF CONTENTS Introduction 2 Development Environment 3 Application overview 4-8 Development Process - 9 1 Introduction We developed a VR

More information

Storyboard for Playing the Game (in detail) Hoang Huynh, Jeremy West, Ioan Ihnatesn

Storyboard for Playing the Game (in detail) Hoang Huynh, Jeremy West, Ioan Ihnatesn Storyboard for Playing the Game (in detail) Hoang Huynh, Jeremy West, Ioan Ihnatesn Playing the Game (in detail) Rules Playing with collision rules Playing with boundary rules Collecting power-ups Game

More information

Naturey Snake. Cal Poly Computer Science Department. By Oliver Wei Hao Xia Fall 2015 SENIOR PROJECT REPORT

Naturey Snake. Cal Poly Computer Science Department. By Oliver Wei Hao Xia Fall 2015 SENIOR PROJECT REPORT Naturey Snake Cal Poly Computer Science Department By Oliver Wei Hao Xia Fall 2015!1 Intro My senior project is a game called Naturey Snake. It is developed for the ios platform and optimized for the iphone

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

G54GAM Coursework 2 & 3

G54GAM Coursework 2 & 3 G54GAM Coursework 2 & 3 Summary You are required to design and prototype a computer game. This coursework consists of two parts describing and documenting the design of your game (coursework 2) and developing

More information

Key Abstractions in Game Maker

Key Abstractions in Game Maker Key Abstractions in Game Maker Foundations of Interactive Game Design Prof. Jim Whitehead January 19, 2007 Creative Commons Attribution 2.5 creativecommons.org/licenses/by/2.5/ Upcoming Assignments Today:

More information

12 Final Projects. Steve Marschner CS5625 Spring 2016

12 Final Projects. Steve Marschner CS5625 Spring 2016 12 Final Projects Steve Marschner CS5625 Spring 2016 Final project ground rules Group size: 2 to 5 students choose your own groups expected scope is larger with more people Charter: make a simple game

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

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

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

G54GAM - Games. So.ware architecture of a game

G54GAM - Games. So.ware architecture of a game G54GAM - Games So.ware architecture of a game Coursework Coursework 2 and 3 due 18 th May Design and implement prototype game Write a game design document Make a working prototype of a game Make use of

More information

Once this function is called, it repeatedly does several things over and over, several times per second:

Once this function is called, it repeatedly does several things over and over, several times per second: Alien Invasion Oh no! Alien pixel spaceships are descending on the Minecraft world! You'll have to pilot a pixel spaceship of your own and fire pixel bullets to stop them! In this project, you will recreate

More information

Nighork Adventures: Beyond the Moons of Shadalee

Nighork Adventures: Beyond the Moons of Shadalee Manual Nighork Adventures: Beyond the Moons of Shadalee by Warptear Entertainment Copyright in 2011-2016 by Warptear Entertainment. Contents 1 Launcher 3 1.0.1 Resolution.................................

More information

Video Game Engines. Chris Pollett San Jose State University Dec. 1, 2005.

Video Game Engines. Chris Pollett San Jose State University Dec. 1, 2005. Video Game Engines Chris Pollett San Jose State University Dec. 1, 2005. Outline Introduction Managing Game Resources Game Physics Game AI Introduction A Game Engine provides the core functionalities of

More information

In the end, the code and tips in this document could be used to create any type of camera.

In the end, the code and tips in this document could be used to create any type of camera. Overview The Adventure Camera & Rig is a multi-behavior camera built specifically for quality 3 rd Person Action/Adventure games. Use it as a basis for your custom camera system or out-of-the-box to kick

More information

CONCEPTS EXPLAINED CONCEPTS (IN ORDER)

CONCEPTS EXPLAINED CONCEPTS (IN ORDER) CONCEPTS EXPLAINED This reference is a companion to the Tutorials for the purpose of providing deeper explanations of concepts related to game designing and building. This reference will be updated with

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