Tutorial: Camera basics

Size: px
Start display at page:

Download "Tutorial: Camera basics"

Transcription

1 Tutorial: Camera basics This tutorial walks you through the steps to learn camera basics in Lumberyard, including creating a first person camera, a third person camera, and tracking and dynamic zooming. At the end of the tutorial you will know the basics of how game cameras work. You will learn how to do the following: Create a camera following object Setup the first person camera view Setup the third person shoulder camera view Setup tracking and dynamic zoom Prerequisites You must have completed the following before starting this tutorial: Introduction to Flow Graph Adding triggers and volumes Using movers Input controls and debugging Step 1: Create the camera s following object The first step in the tutorial is to create a camera s following object, which is the Mover_Capsule. The idea is to parent the camera to the Mover_Capsule, then the camera will always follow the Mover_Capsule to create desired camera views. To create a mover capsule 1. In Lumberyard Editor, open Camera_Sample.cry level, and locate the Rabbit object in the level. Rabbit is the object the camera will be following so you can get smooth camera movement while you make a turn.

2 2. Locate the Mover_Capsule in the Flow Graph Window. To create a Flow Graph within object, just select the object and right-click to create it. In this case, we are looking at a Flow Graph that was previously created. There are three important Flow Graph nodes: a. Entity:GetPos to get position of object, in this case the object is Rabbit b. Movement:MoveEnityTo to make Mover_Capsule move in the direction of Rabbit at a set speed. c. Entity: EntityFaceAt to make sure the capsule always faces the rabbit. The FwdDir is set to Y- in this case. You have now setup a camera s following object and are ready for camera setup.

3 Step 2: Setup the first person camera view After creating the camera s following object, you will learn how to setup the first person point of view (POV). There is no Flow Graph required once you have setup the camera view action in the start Flow Graph, then parent the camera to the Mover_Capsule, and finally setup the camera position to the desired location. To setup Camera:View 1. Locate the 00_Start Flow Graph in Flow Graph Editor. 2. Select the first Camera:View node in Flow Graph that is connected to the output from the Logid:Sequencer.

4 3. You can see the 01_Camera_Parented_to_Mover3 camera is associated with Camera:View node. This is the only thing you will need to set user up for viewing level from the camera you have. 4. Setup Camera:View with a Sequencer so you can cycle through different camera views. 5. Jump into the game, or turn AI/Physics on to preview the camera animation and switch the camera to 01_Camera_Parented_to_Mover3 to view from the camera. Go back to the default camera and adjust the position of the camera. It will need to be eye level since the capsule represents a character model. Now you know how to setup a first person camera. Step 3: Setup the Third Person shoulder camera view Now that you ve learned how to setup a first person view, the last thing you will learn in this tutorial is to parent the camera to the capsule mover and adjust camera position to get the third person view that is over the shoulder. To create the third person shoulder POV 1. Create a Tag point > Tagpoint2. 2. Use the link function to parent 03_Camera_Parented_to_LookTarget to the Tagpoint2

5 3. Create Movement:RotateEntityTo nodes in Flow Graph Editor to make 03_Camera_Parented_to_LookTarget rotate and move up and down based on Tagpoint2 to create shoulder camera movements. Congratulations! You have successfully created a third person over the shoulder camera view.

6 Step 4: Create tracking and dynamic zoom Tracking is one of main actions when working with cameras. In this step, we will walk you through how to setup tracking and give user dynamic zoom experiences. We will use the 07_Tracking + Dynamic_Zoom to guide you through the process. To create a tracking view 1. Make the camera track the target by adding an Entity:EntityFaceAt node to setup the target facing camera. 2. Set an offset to create tracking distance. Create Add math nodes to apply an offset from X, Y, Z vectors nodes. To create Dynamic Zoom 1. Now we will change the camera FOV dynamically based on the distance between the camera and the entity it is tracking.

7 2. Get the position after game start by using a Time:Delay node. 3. Return dynamic values for the camera s FOV from smoothing out the multiplier and clamping the value from a defined range. After creating tracking offset and changing FOV for the camera, you have now created a tracking camera view with dynamic zoom. Conclusion This concludes the Flow Graph tutorial series for Lumberyard. Using this set of tutorials, you have begun to understand the power of scripting in the Lumberyard Editor. When you are comfortable with the basics of Flow Graph, browse our tutorial pages to learn even more about Lumberyard's advanced tools and features. There are thousands of games to be made! We d love to hear from you! Head to our Tutorial Discussion forum to share any feedback you have, including what you do or don t like about our tutorials or new content you d like to see in the near future.

Tutorial: Getting Started - Flow Graph scripting

Tutorial: Getting Started - Flow Graph scripting Tutorial: Getting Started - Flow Graph scripting Overview This tutorial introduces the concept of game play scripting using the Flow Graph editor. You will set up Flow Graph scripts that do five things:

More information

Tutorial: Introduction to Flow Graph

Tutorial: Introduction to Flow Graph Tutorial: Introduction to Flow Graph This tutorial introduces you to Flow Graph, including its core concepts, the Flow Graph editor and how to use it to create game logic. At the end of this tutorial,

More information

Tutorial: How to Load a UI Canvas from Lua

Tutorial: How to Load a UI Canvas from Lua Tutorial: How to Load a UI Canvas from Lua This tutorial walks you through the steps to load a UI canvas from a Lua script, including creating a Lua script file, adding the script to your level, and displaying

More information

Tutorial: How to Create and Assign Materials from the Material Editor

Tutorial: How to Create and Assign Materials from the Material Editor Tutorial: How to Create and Assign Materials from the Material Editor This tutorial walks you through the steps to create and assign a new material to an object in the Lumberyard Editor. To do this we

More information

Tutorial: Importing static mesh (FBX)

Tutorial: Importing static mesh (FBX) Tutorial: Importing static mesh (FBX) This tutorial walks you through the steps needed to import a static mesh and its materials from an FBX file. At the end of the tutorial you will have new mesh and

More information

Tutorial: Importing Animations into Geppetto

Tutorial: Importing Animations into Geppetto Tutorial: Importing Animations into Geppetto This tutorial walks you through the steps needed to import animations with Geppetto, including setting up the.chrparams file, the Skeleton List, and importing

More information

Tutorial: Working with Lighting through Components

Tutorial: Working with Lighting through Components Tutorial: Working with Lighting through Components With a populated scene we can begin layering in light sources to add realism and light to our level. For this we will need to use an environmental probe

More information

Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph

Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph Tutorial: Modify UI 01 How to Load a UI Canvas Using Flow Graph This tutorial is the first tutorial in the Creating an Options Menu tutorial series and walks you through the steps to load a canvas using

More information

Tutorial: Exporting characters (Maya)

Tutorial: Exporting characters (Maya) Tutorial: Exporting characters (Maya) This tutorial walks you through the steps needed to get a character exported from Maya and ready for importing into Lumberyard, including how to export the character

More information

Tutorial: Accessing Maya tools

Tutorial: Accessing Maya tools Tutorial: Accessing Maya tools This tutorial walks you through the steps needed to access the Maya Lumberyard Tools for exporting art assets from Maya to Lumberyard. At the end of the tutorial, you will

More information

You will learn how to do the following:

You will learn how to do the following: Tutorial: How to Interact with UI Using Lua This tutorial walks you through the steps to interact with UI using Lua, including loading and unloading UI canvases, listening to and handling UI events, working

More information

Tutorial: Uploading your server build

Tutorial: Uploading your server build Tutorial: Uploading your server build This tutorial walks you through the steps to setup and upload your server build to Amazon GameLift including prerequisites, installing the AWS CLI (command-line interface),

More information

Tutorial: Exporting characters (Max)

Tutorial: Exporting characters (Max) Tutorial: Exporting characters (Max) This tutorial walks you through the steps needed to get a character into Lumberyard, including how to export the character s skin, skeleton and material. Character

More information

Tutorial: Options Menu Layout

Tutorial: Options Menu Layout Tutorial: Options Menu Layout This tutorial walks you through the steps to add a window title and avatar selection section, including adding the window title, adding the user profile section, configuring

More information

Tutorial: Importing Height Maps and Mega-Terrain from World Machine

Tutorial: Importing Height Maps and Mega-Terrain from World Machine Tutorial: Importing Height Maps and Mega-Terrain from World Machine In this tutorial you will learn how to quickly create a new terrain, using World Machine to generate a Height Map, and Mega-Terrain texture.

More information

Tutorial: Packaging your server build

Tutorial: Packaging your server build Tutorial: Packaging your server build This tutorial walks you through the steps to prepare a game server folder or package containing all the files necessary for your game server to run in Amazon GameLift.

More information

Tutorial: Character creation basics

Tutorial: Character creation basics Tutorial: Character creation basics This tutorial walks you through the steps needed to understand the basics of creating a character, including how to create a character definition file, an attachments

More information

Tutorial: Creating a Gem with code

Tutorial: Creating a Gem with code Tutorial: Creating a Gem with code This tutorial walks you through the steps to create a simple Gem with code, including using the Project Configurator to create an empty Gem, building the Gem, and drawing

More information

Tutorial: Adding Sounds for a One-Shot Weapon

Tutorial: Adding Sounds for a One-Shot Weapon Tutorial: Adding Sounds for a One-Shot Weapon This tutorial will expand on the previous tutorial to show how to setup audio for the cannon and will tie together methods of implementing sounds into Lumberyard

More information

Tutorial: Upgrading a game project

Tutorial: Upgrading a game project Tutorial: Upgrading a game project This tutorial walks you through the steps needed to upgrade a game project from a previous version of Lumberyard. You will learn how to do the following: Upgrade Lumberyard

More information

Workshop BOND UNIVERSITY Bachelor of Interactive Multimedia and Design Beginner Game Dev Character Control Building a character animation controller.

Workshop BOND UNIVERSITY Bachelor of Interactive Multimedia and Design Beginner Game Dev Character Control Building a character animation controller. Workshop BOND UNIVERSITY Bachelor of Interactive Multimedia and Design Beginner Game Dev Character Control Building a character animation controller. FACULTY OF SOCIETY AND DESIGN Building a character

More information

Tutorial: How to create Basic Trail Particles

Tutorial: How to create Basic Trail Particles Tutorial: How to create Basic Trail Particles This tutorial walks you through the steps to create Basic Trail Particles. At the end of the tutorial you will have a trail particles that move around in a

More information

Tutorial: Understanding the Lumberyard Interface

Tutorial: Understanding the Lumberyard Interface Tutorial: Understanding the Lumberyard Interface This tutorial walks you through a basic overview of the Interface. Along the way we will create our first level, generate terrain, navigate within the editor,

More information

Tutorial: Getting Started - Terrain

Tutorial: Getting Started - Terrain Tutorial: Getting Started - Terrain Overview This tutorial teaches you how to apply materials to the terrain, modify the terrain height, and use the vegetation tool to paint trees onto the terrain. * This

More information

Setting up A Basic Scene in Unity

Setting up A Basic Scene in Unity Setting up A Basic Scene in Unity So begins the first of this series of tutorials aimed at helping you gain the basic understanding of skills needed in Unity to develop a 3D game. As this is a programming

More information

Game Design Unity Workshop

Game Design Unity Workshop Game Design Unity Workshop Activity 4 Goals: - Creation of small world - Creation of character - Scripting of player movement and camera following Load up unity Build Object: Collisions in Unity Aim: Build

More information

Motus Unitatis, an Animation Editor

Motus Unitatis, an Animation Editor Motus Unitatis, an Animation Editor Bryan Castillo, Timothy Elmer Purpose The Motus Unitatis Animator Editor allows artists and designers to edit and create short animated clips. With MU, a designer has

More information

Mobile Touch Floating Joysticks with Options version 1.1 (Unity Asset Store) by Kevin Blake

Mobile Touch Floating Joysticks with Options version 1.1 (Unity Asset Store) by Kevin Blake Mobile Touch Floating Joysticks with Options version 1.1 (Unity Asset Store) by Kevin Blake Change in version 1.1 of this document: only 2 changes to this document (the unity asset store item has not changed)

More information

Tutorial: Making your First Level

Tutorial: Making your First Level Tutorial: Making your First Level This tutorial walks you through the steps to making your first level, including placing objects, modifying the terrain, painting the terrain and placing vegetation. At

More information

Kaltura Media Mashup Tool

Kaltura Media Mashup Tool OVERVIEW: Kaltura is a media (video, audio, images) hosting and creation application that is integrated into the Blackboard LMS. Kaltura allows students to easily create and share media wherever there

More information

Getting Started with Crazy Talk 6

Getting Started with Crazy Talk 6 Getting Started with Crazy Talk 6 Crazy Talk 6 is an application that generates talking characters from an image or photo, as well as facial animation for video. Importing an Image Launch Crazy Talk and

More information

Animation Charts. What is in the Animation Charts Package? Flying Cycle. Throw Side View. Jump. Side View. Sequence Layout

Animation Charts. What is in the Animation Charts Package? Flying Cycle. Throw Side View. Jump. Side View. Sequence Layout Toon Boom Animation provides several animation charts designed to help you animate different characters. The Animation Chart Package contains main actions and animation such as, walking, flying, weight

More information

Note that the reference does not include the base directory or an initial backslash. The file extension for UI canvases should be included.

Note that the reference does not include the base directory or an initial backslash. The file extension for UI canvases should be included. We are going to be loading UI canvases by filename, let's get our file structure and naming conventions defined first. Lumberyard will generally be looking at your project's base directory as a starting

More information

Changing Camera Views! Part 2: Simple Scene Change & Lighting Fixes

Changing Camera Views! Part 2: Simple Scene Change & Lighting Fixes Changing Camera Views! Part 2: Simple Scene Change & Lighting Fixes By Bella Onwumbiko under the direction of Professor Susan Rodger Duke University July 2013 Introduction! In this tutorial, we will set

More information

Tutorial: Initializing and administering a Cloud Canvas project

Tutorial: Initializing and administering a Cloud Canvas project Tutorial: Initializing and administering a Cloud Canvas project This tutorial walks you through the steps of getting started with Cloud Canvas, including signing up for an Amazon Web Services (AWS) account,

More information

COMP30019 Graphics and Interaction Input

COMP30019 Graphics and Interaction Input COMP30019 Graphics and Interaction Input Department of Computing and Information Systems The Lecture outline Introduction Touch Input Gestures Picking Sensors Why Touch? Touch interfaces are increasingly

More information

Game Design Unity Workshop

Game Design Unity Workshop Game Design Unity Workshop Activity 1 Unity Overview Unity is a game engine with the ability to create 3d and 2d environments. Unity s prime focus is to allow for the quick creation of a game from freelance

More information

Game Design Unity Workshop

Game Design Unity Workshop Game Design Unity Workshop Activity 2 Goals: - Creation of small world - Creation of character - Scripting of player movement and camera following Load up unity Build Object: Mini World and basic Chase

More information

Student Guide for Integrating Media in Classroom 1

Student Guide for Integrating Media in Classroom 1 Student Guide for Integrating Media in Classroom We have partnered with Kaltura to deliver a video application that opens up a whole new set of media-rich teaching possibilities from integration of video

More information

Basic Kismet Tutorial. An Unreal Development Kit Tutorial. Jesse Walter

Basic Kismet Tutorial. An Unreal Development Kit Tutorial. Jesse Walter Basic Kismet Tutorial An Unreal Development Kit Tutorial By Jesse Walter File name: UDK_ElevatorsB.docx Page 1 of 23 Purpose: The purpose of this document is to provide a written instructions creating

More information

DV20447 Virtual-Reality Procedural Experiences with 3ds Max s Max Creation Graph and Stingray

DV20447 Virtual-Reality Procedural Experiences with 3ds Max s Max Creation Graph and Stingray DV20447 Virtual-Reality Procedural Experiences with 3ds Max s Max Creation Graph and Stingray Louis Marcoux Senior Technical Specialist Autodesk Canada area.autodesk.com/louis Join the conversation #AU2016

More information

What s New in ArtMatic Designer 7

What s New in ArtMatic Designer 7 What s New in ArtMatic Designer 7 Highlights ArtMatic 7 New Features: Overview More than 100 new and updated components for both 2D and 3D graphics. Be sure to see the ArtMatic 7 Component Reference Update.

More information

Tutorial: Using the UUCS Crowd Simulation Plug-in for Unity

Tutorial: Using the UUCS Crowd Simulation Plug-in for Unity Tutorial: Using the UUCS Crowd Simulation Plug-in for Unity Introduction Version 1.1 - November 15, 2017 Authors: Dionysi Alexandridis, Simon Dirks, Wouter van Toll In this assignment, you will use the

More information

v SMS 12.3 Tutorial Import From Web Requirements Internet connection Time minutes Prerequisites None Objectives

v SMS 12.3 Tutorial Import From Web Requirements Internet connection Time minutes Prerequisites None Objectives SMS 12.3 Tutorial Import from Web v. 12.3 Objectives This tutorial gives an overview of the Importing from Web option offered by SMS. This option connects SMS to a web based program that adds additional

More information

To use the keyboard emulation, you must activate it in the tray icon menu (see 2.6 Enable keyboard emulation)

To use the keyboard emulation, you must activate it in the tray icon menu (see 2.6 Enable keyboard emulation) LEA USER GUIDE Notice: To use LEA you have to buy the client and download the free server at: https://www.leaextendedinput.com/download.php The Client is available in the App Store for IOS and Android

More information

Designing a track in Adams/Car:

Designing a track in Adams/Car: Warning: Remember to change your working directory before you begin this lesson. If you do not, Adams may not work correctly. Also remember to move everything you wish to keep from the working directory

More information

DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013

DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013 DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Slide Views MORE TASKS IN MICROSOFT POWERPOINT PAGE 05 Formatting

More information

Getting Started with Java Using Alice. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Getting Started with Java Using Alice. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Getting Started with Java Using Alice Develop a Complete Animation 1 Copyright 2013, Oracle and/or its affiliates. All rights Objectives This lesson covers the following objectives: Use functional decomposition

More information

Creating a 3D Characters Movement

Creating a 3D Characters Movement Creating a 3D Characters Movement Getting Characters and Animations Introduction to Mixamo Before we can start to work with a 3D characters we have to get them first. A great place to get 3D characters

More information

Maya Muscle Advanced Techniques

Maya Muscle Advanced Techniques Maya Muscle Advanced Techniques 10 The Maya Muscle Advanced Techniques tutorials assume that you have a basic familiarity with the main tools and features of Maya, as well as basic Maya rigging knowledge.

More information

Iconasys Advanced 360 Product View Creator. User Guide (Mac OSX)

Iconasys Advanced 360 Product View Creator. User Guide (Mac OSX) Iconasys Advanced 360 Product View Creator User Guide (Mac OSX) Overview 360 Product View Creator UI 1. Upload Image Area 2. Image Viewing Gallery 3. Output Format and Button Create 4. 360 Preview Window

More information

KINEMATICS FOR ANIMATION. Rémi Ronfard, Animation, M2R MOSIG

KINEMATICS FOR ANIMATION. Rémi Ronfard, Animation, M2R MOSIG KINEMATICS FOR ANIMATION Rémi Ronfard, Animation, M2R MOSIG Direct and inverse kinematics in animation Fast numerical methods for inverse kinematics by Bill Baxter My Adventures with Inverse Kinematics

More information

Animation Charts 4. What is in the Animation Charts 4 Package?

Animation Charts 4. What is in the Animation Charts 4 Package? Animation Charts 4 Toon Boom Animation provides several animation charts designed to help the user animate different actions. The Animation Charts 4 package contains fx animation such as; a smoke cycle,

More information

ANIMATOR TIMELINE EDITOR FOR UNITY

ANIMATOR TIMELINE EDITOR FOR UNITY ANIMATOR Thanks for purchasing! This document contains a how-to guide and general information to help you get the most out of this product. Look here first for answers and to get started. What s New? v1.53

More information

Princess & Dragon Part 1: Objects in an Alice World

Princess & Dragon Part 1: Objects in an Alice World Princess & Dragon Part 1: Objects in an Alice World By Elizabeth Liang under the direc?on of Professor Susan Rodger Duke University May 2010 Updated June 2014 by Ellen Yuan Introduc)on Welcome to Alice!

More information

Vuforia quick install guide. Android devices and Unity 3D models edition

Vuforia quick install guide. Android devices and Unity 3D models edition Vuforia quick install guide Android devices and Unity 3D models edition Welcome to the new age of product design and customer experience!! Using augmented reality you can create a whole new experience.

More information

BONE CONTROLLER ASSET VERSION 0.1 REV 1

BONE CONTROLLER ASSET VERSION 0.1 REV 1 Foreword Thank you for purchasing the Bone 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

Pong in Unity a basic Intro

Pong in Unity a basic Intro This tutorial recreates the classic game Pong, for those unfamiliar with the game, shame on you what have you been doing, living under a rock?! Go google it. Go on. For those that now know the game, this

More information

Animating Layers with Timelines

Animating Layers with Timelines Animating Layers with Timelines Dynamic HTML, or DHTML, refers to the combination of HTML with a scripting language that allows you to change style or positioning properties of HTML elements. Timelines,

More information

Animation and Mechanization Tutorial

Animation and Mechanization Tutorial Animation and Mechanization Tutorial Animation v. Mechanization Animation: Allows the operator to move the standard assembly constraints Distance (Mate, Align and Offset) taking periodic snapshots of the

More information

Beginners Guide Maya. To be used next to Learning Maya 5 Foundation. 15 juni 2005 Clara Coepijn Raoul Franker

Beginners Guide Maya. To be used next to Learning Maya 5 Foundation. 15 juni 2005 Clara Coepijn Raoul Franker Beginners Guide Maya To be used next to Learning Maya 5 Foundation 15 juni 2005 Clara Coepijn 0928283 Raoul Franker 1202596 Index Index 1 Introduction 2 The Interface 3 Main Shortcuts 4 Building a Character

More information

Notes 2 My Notes and Thoughts Blender Rigify. Categories : Uncategorised. Date : 19th November / 43

Notes 2 My Notes and Thoughts  Blender Rigify. Categories : Uncategorised. Date : 19th November / 43 Blender Rigify Categories : Uncategorised Date : 19th November 2017 1 / 43 Rigify is an incredibly useful tool for getting characters rigged in a jiffy. Instead of spending days setting up a rig by hand,

More information

Hello App Inventor! Android programming for kids and the rest of us. Chapter 2. by Paula Beer and Carl Simmons. Copyright 2015 Manning Publications

Hello App Inventor! Android programming for kids and the rest of us. Chapter 2. by Paula Beer and Carl Simmons. Copyright 2015 Manning Publications SAMPLE CHAPTER Hello App Inventor! Android programming for kids and the rest of us by Paula Beer and Carl Simmons Chapter 2 Copyright 2015 Manning Publications Brief contents 1 Getting to know App Inventor

More information

Kaltura Video Presentation

Kaltura Video Presentation OVERVIEW: Kaltura is a media (video, audio, images) hosting and creation application that is integrated into the Blackboard LMS. Kaltura allows instructors to easily create and share media wherever there

More information

Zombie Chat, In Google SketchUp

Zombie Chat, In Google SketchUp This fun project shows how to create an animated dialog between two characters. The characters in this case are the zombies created in one of the other projects this month, so you might want to try out

More information

This lesson will focus on the Bouncing Ball exercise.

This lesson will focus on the Bouncing Ball exercise. This will be the first of an on-going series of Flipbook tutorials created by animator Andre Quijano. The tutorials will cover a variety of exercises and fundamentals that animators, of all skill levels,

More information

Chapter 9- Animation Basics

Chapter 9- Animation Basics Timing, Moving, Rotating and Scaling Now that we know how to make stuff and make it look good, it s time to figure out how to move it around in your scene. Another name for an animation is Interpolation

More information

4-H VIDEO SCORECARD 4-H VIDEO SCORECARD. Points Scored

4-H VIDEO SCORECARD 4-H VIDEO SCORECARD. Points Scored REPORTER REPORTER Preparation Attached list of questions for interview 20 ~ Poise/coordination with camera operator 20 ~ Clear speech 20 ~ Expression/body language 10 ~ Appropriate attire 10 ~ Smooth introduction

More information

Welcome. Let s get started. Welcome to this short video guide, which has been prepared with novice video makers in mind.

Welcome. Let s get started. Welcome to this short video guide, which has been prepared with novice video makers in mind. Short Video Guide Welcome Welcome to this short video guide, which has been prepared with novice video makers in mind. Inside you will find a brief overview of the various elements of basic movie-making

More information

COS 116 The Computational Universe Laboratory 10: Computer Graphics

COS 116 The Computational Universe Laboratory 10: Computer Graphics COS 116 The Computational Universe Laboratory 10: Computer Graphics As mentioned in lecture, computer graphics has four major parts: imaging, rendering, modeling, and animation. In this lab you will learn

More information

Fish Eye Menu DMXzone.com Fish Eye Menu Manual

Fish Eye Menu DMXzone.com Fish Eye Menu Manual Fish Eye Menu Manual Page 1 of 33 Index Fish Eye Menu Manual... 1 Index... 2 About Fish Eye Menu... 3 Features in Detail... 4 Integrated in Dreamweaver... 6 Before you begin... 7 Installing the extension...

More information

Name: Jonathan Lindquist Occupation: Technical Artist Company: Epic Games Duties: Author shaders Generate art Write scripts Miscellaneous tasks

Name: Jonathan Lindquist Occupation: Technical Artist Company: Epic Games Duties: Author shaders Generate art Write scripts Miscellaneous tasks Fortnite s Vertex Shaders Introduction : Personal Name: Jonathan Lindquist Occupation: Technical Artist Company: Epic Games Duties: Author shaders Generate art Write scripts Miscellaneous tasks Previous

More information

POWERPOINT BASICS: MICROSOFT OFFICE 2010

POWERPOINT BASICS: MICROSOFT OFFICE 2010 POWERPOINT BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Microsoft PowerPoint Components SIMPLE TASKS IN MICROSOFT POWERPOINT

More information

How to make an EZ-Robot Tutorial

How to make an EZ-Robot Tutorial www.ez-robot.com How to make an EZ-Robot Tutorial This is a short tutorial to show you how to create a tutorial for the EZ-Robot website, using the "Tutorials" section. Last Updated: 10/16/2015 Step 1.

More information

Blending & State Machines. CSE169: Computer Animation Instructor: Steve Rotenberg UCSD, Winter 2017

Blending & State Machines. CSE169: Computer Animation Instructor: Steve Rotenberg UCSD, Winter 2017 Blending & State Machines CSE169: Computer Animation Instructor: Steve Rotenberg UCSD, Winter 2017 Blending & Sequencing Now that we understand how a character rig works and how to manipulate animation

More information

<Insert Picture Here> Oracle Policy Automation 10.3 Features and Benefits

<Insert Picture Here> Oracle Policy Automation 10.3 Features and Benefits Oracle Policy Automation 10.3 Features and Benefits June 2011 Introducing Oracle Policy Automation 10.3 Highlights include: Fast and easy generation of documents such as decision

More information

UDK Basics Textures and Material Setup

UDK Basics Textures and Material Setup UDK Basics Textures and Material Setup By Sarah Taylor http://sarahtaylor3d.weebly.com In UDK materials are comprised of nodes, some of which you may be familiar with, such as Diffuse, normal, specular

More information

Animation Charts 3. What is in the Animation Charts 3 Package? Horse Gallop Cycle Side View

Animation Charts 3. What is in the Animation Charts 3 Package? Horse Gallop Cycle Side View Animation Charts 3 Toon Boom Animation provides several animation charts designed to help the user animate different characters. The Animation Charts 3 package contains main actions and animation such

More information

Adding a Trigger to a Unity Animation Method #2

Adding a Trigger to a Unity Animation Method #2 Adding a Trigger to a Unity Animation Method #2 Unity Version: 5.0 Adding the GameObjects In this example we will create two animation states for a single object in Unity with the Animation panel. Our

More information

VIDEO PRODUCTION TECHNOLOGY AND LIVELIHOOOD EDUCATION Y2 THIRD TERM AY

VIDEO PRODUCTION TECHNOLOGY AND LIVELIHOOOD EDUCATION Y2 THIRD TERM AY VIDEO PRODUCTION MOTION PICTURE a series of pictures projected on a screen in a rapid succession with objects shown in successive positions slightly changed so as to produce the optical effect of a continuous

More information

Exploring CircuitMaker

Exploring CircuitMaker Exploring CircuitMaker Modified by Phil Loughhead on 2-Jun-2015 Getting Started Driving a PCB Design through CircuitMaker Project Management Component Management Variants Parent page: CircuitMaker Documentation

More information

NVIDIA FX Composer. Developer Presentation June 2004

NVIDIA FX Composer. Developer Presentation June 2004 NVIDIA FX Composer Developer Presentation June 2004 1 NVIDIA FX Composer FX Composer empowers developers to create high performance shaders in an integrated development environment with real-time preview

More information

Producing Cards and Calendars With Photo Projects Assistant. Roxio Easy Media Creator Sonic Solutions. All rights reserved.

Producing Cards and Calendars With Photo Projects Assistant. Roxio Easy Media Creator Sonic Solutions. All rights reserved. Producing Cards and Calendars With Photo Projects Assistant Roxio Easy Media Creator 10 2007 Sonic Solutions. All rights reserved. When you shoot the perfect photo, you want to do more than just print

More information

Introduction to Unreal Engine Blueprints for Beginners. By Chaven R Yenketswamy

Introduction to Unreal Engine Blueprints for Beginners. By Chaven R Yenketswamy Introduction to Unreal Engine Blueprints for Beginners By Chaven R Yenketswamy Introduction My first two tutorials covered creating and painting 3D objects for inclusion in your Unreal Project. In this

More information

Research on the key technologies and realization of virtual campus

Research on the key technologies and realization of virtual campus Journal of Physics: Conference Series PAPER OPEN ACCESS Research on the key technologies and realization of virtual campus To cite this article: Cheng Zhang 2018 J. Phys.: Conf. Ser. 1074 012141 View the

More information

Shakespeare App. A Multiple Choice Quiz

Shakespeare App. A Multiple Choice Quiz Shakespeare App A Multiple Choice Quiz In this tutorial we are going to create a multiple choice game in AppFurnace. This should take around 30 minutes plus the time it takes for you to type in your questions.

More information

JWildfire tutorial on: the dancing-flamemodule

JWildfire tutorial on: the dancing-flamemodule JWildfire tutorial on: the dancing-flamemodule by thargor6 (http://thargor6.deviantart.com/) Version 0.1 The following tutorial describes how to create sound-synchronized movies or short animations using

More information

Google Video store (beta)

Google Video store (beta) Google Video store (beta) Google Video enables you to find the videos you are looking for all formats, lengths and subjects and now the first open video marketplace, the Google Video store, offers even

More information

Animation Charts 4. What is in the Animation Charts 4 Package?

Animation Charts 4. What is in the Animation Charts 4 Package? Toon Boom Animation provides several animation charts designed to help the user animate different actions. The package contains fx animation such as; a smoke cycle, a bubble bursting, and an electric arc.

More information

Quick Start Guide. Overview Adding Box+ImageTrust to your Box account Scanning with Box+ImageTrust

Quick Start Guide. Overview Adding Box+ImageTrust to your Box account Scanning with Box+ImageTrust Quick Start Guide Box+ImageTrust is a unique integration of an HTML5 Scan client. While working in box you can now easily scan and import documents. Overview................................... 2 Adding

More information

Chapter 4: Programming with MATLAB

Chapter 4: Programming with MATLAB Chapter 4: Programming with MATLAB Topics Covered: Programming Overview Relational Operators and Logical Variables Logical Operators and Functions Conditional Statements For Loops While Loops Debugging

More information

The Essentials of Alice (Bunny) By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008

The Essentials of Alice (Bunny) By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008 The Essentials of Alice (Bunny) By Jenna Hayes under the direction of Professor Susan Rodger Duke University July 2008 This tutorial will teach you how to create a short animation in an Alice world. Follow

More information

Motion Creating Animation with Behaviors

Motion Creating Animation with Behaviors Motion Creating Animation with Behaviors Part 1: Basic Motion Behaviors Part 2: Stacking Behaviors upart 3: Using Basic Motion Behaviors in 3Do Part 4: Using Simulation Behaviors Part 5: Applying Parameter

More information

3dSprites. v

3dSprites. v 3dSprites v1.0 Email: chanfort48@gmail.com 3dSprites allows you to bring thousands of animated 3d objects into the game. Only up to several hundreds of animated objects can be rendered using meshes in

More information

Platformer Tutorial 8 - Adding Mr.Green and Character Animation. Last month. Character FX

Platformer Tutorial 8 - Adding Mr.Green and Character Animation. Last month. Character FX Last month Things became a lot more dangerous as traps and deadly particles were added. It just wouldn t be the same without Mr.Green so he s making his debut this month. As this has always been the plan,

More information

Alice: A Free 3D Animation World for Teaching Programming

Alice: A Free 3D Animation World for Teaching Programming Alice: A Free 3D Animation World for Teaching Programming Barbara Ericson ericson@cc.gatech.edu Oct 2005 (Slightly adapted by Håkan Jonsson) Pick a World Playing the Movie! Click on the Examples tab "

More information

Note: The Green Person symbol is with the Material editor, Database View and Flowgraph shortcuts all very useful shortcuts.

Note: The Green Person symbol is with the Material editor, Database View and Flowgraph shortcuts all very useful shortcuts. Tutorial Changing Playable Character The purpose of this tutorial is to change the character model from the nanosuit to something a bit more acceptable for the purposes of architectural visualization.

More information

Digital Video Projects (Creating)

Digital Video Projects (Creating) Tim Stack (801) 585-3054 tim@uen.org www.uen.org Digital Video Projects (Creating) OVERVIEW: Explore educational uses for digital video and gain skills necessary to teach students to film, capture, edit

More information

Contents. Cinema Pro Cams User Documentation

Contents. Cinema Pro Cams User Documentation Contents Introduction... 4 Requirements... 4 Cinema Pro Cams Overview... 5 Key Features... 5 Interface Overview... 5 Installing Cinema Pro Cams... 6 Installing Cinema Pro Cams Unity Package... 6 Creating

More information

Sliding and Rotating Objects. Appendix 1: Author s Notes

Sliding and Rotating Objects. Appendix 1: Author s Notes AnimationWorks User Guide AnimationWORKS Introduction Camera Paths Cameras Moving Objects Moving Object Paths Sliding and Rotating Objects Light Objects Class Visibility Objects Transparency Objects Appendix

More information