Creating and Triggering Animations

Size: px
Start display at page:

Download "Creating and Triggering Animations"

Transcription

1 Creating and Triggering Animations 1. Download the zip file containing BraidGraphics and unzip. 2. Create a new Unity project names TestAnimation and set the 2D option. 3. Create the following folders under Assets (folders indented under other folder will be created Sprites Greeteridle Greeterwalk Animations Scripts Scenes 4. Click the File menu, choose Save Scene, name the Scene AnimationScene and save it in the Scenes folder. 5. In the BraidGraphics folder open the GreeterIdle folder. 6. Drag all the single image files into the Greeteridle folder. (Click the first image, hold down the shift key, and click the last image to select a group.) 7. In the BraidGraphics folder open the GreeterWalk folder. 8. Drag all the single image files into the Greeterwalk folder. You will next create game objects that consist of these individual files. This is done by dragging a group of files into the Scene. An Animation will automatically be created. 9. In Unity, open the Greeteridle folder, hold down the Ctrl key and type the letter A to select all the images.

2 10. Drag this selected group of images onto the scene object in the Hierarchy window 11. A dialog box opens and prompts you to name and save an Animation. A new Animation is being created for your list of images. Name this animation GreeterIdle and save it in the GreeterIdle folder. You see an Animator window open over the Scene window. 12. Click the Scene tab to show the Scene.

3 13. In the Hierarchy window rename the just added object to Greeter. There were two objects created in the Greeteridle folder. A Greeter Animator and a Greeter Animation. The Animator is the controller for the Animation. 14. Using the above steps for creating the Greeter animation, use the images in the Greeterwalk folder to create another greeter object in the hierarchy and another greeter animation/animator. When you save the Animation name it GreeterWalk. You should now have two objects in the Scene (you may have to drag the second object to the left/right so it does not cover the first object). We will remove this second object because all we want is the Greeter Walk animation. 15. In the Hierarchy window click the name of the new object and press the Delete key. 16. In the Greeterwalk and Greeteridle folders drag the animations GreeterWalk and Greeteridle into the Animations folder. We will next create conditions on the Animator to switch between the idle and walk animations. 17. Click the Animator tab next to the Scene tab to show the Animator window.

4 This shows the Greeteridle animation and under what conditions it will be run. In this case, the Entry box indicates that the idle animation will start when the object (greeter) is first displayed. We want to add the second animation to this animator and set transition conditions. 18. Click in the Animations folder. You see the two animations created earlier. Drag the greeterwalk animation into the Animator window and drop it just above the Greeteridle block. Before adding transition logic you need to set a Parameter on the animation. 19. Click the Parameters tab in the animator window to select this option:

5 20. Click the plus symbol to add a parameter and choose Bool as the data type. 21. For the parameter name type standing and press Enter. 22. Click the check box next to this parameter to set the value to True. It should look like: You will next set transitions between these two animations. 23. Right click the greeteridle box in the Animator and choose Make Transition. 24. Move the mouse over the Greeterwalk animation and click. You see a transition arrow running from the idle to the walk animation. 25. Right click the mouse on the greeterwalk animation box, click the right mouse button, and choose Make Transition.

6 26. Move the mouse back over the greeteridle animation and click. You should now have to arrows between these two animations. 27. Click the arrow from the greeteridle to the greeterwalk animation blocks. The arrow turns blue since it is selected. 28. In the Inspector area uncheck the option Has Exit Time. 29. In the inspector window, under the conditions area, click the plus symbol to add a condition. You see the parameter named standing with the Boolean value true in a drop-down menu. This describes the condition under which the animation switches from the idle animation to the walk animation. We want to set this condition to False. That is, when the standing value is false then the animation switches to walk. Change the parameter value to false. 30. Click the other transition from the walk animation to the idle animation blocks.

7 31. In the inspector window for this transition, uncheck the Has Exit Time and add a condition for standing to be true. 32. Run your program with the Animator window open. In the game window you see the greeter idle animation. In the animator window when you click the Standing parameter check box to turn on and turn off the parameter value you notice the animation change to walking. Moving with a Script You will next create a Script to move your object. 1. Right click the Scripts folder and create a new C# Script. 2. Name this script greetermove and double click the script to open it in the editor window. You want this script to do three things, move the figure left/right if the keyboard or controller is pressed, flip the image if the left/right keys are pressed, and swap the animation. 3. Edit the script so it looks like: This will move the figure left/right. 4. Drag the script and drop it on the Greeter object in the hierarchy window. 5. Run your scene and move the figure around the screen. You will next add the animation switch. If the x value of the pos vector is zero then the object is not moving and the animation should be set to idle. If the x value of pos is not zero then it is moving.

8 6. Edit the script so it looks like: You first define an Animator variable to hold the Animator object associated with this Greeter object. You then get a reference to this Animator object in the Start() method using the GetComponent<Animator>() command. In the Update() method you check the value of the Vector3 object pos. If the x value is zero (the object is not moving left or right) you use the SetBool method on the animator object to set the parameter to true or false. Notice that the name used in the SetBool command is the same name you used when you set the parameter on the Animator. 7. Save your script and run your scene. The greeter now switches between animations when the arrow keys are held down. You will next flip the image on the X axis. This is done by using the command transform.localscale being set to a positive or negative value. In order to do this you must add a facingright flag (Boolean) and then swap the localscale value. You can only add a new localscale value and not directly edit the existing value.

9 Edit your code so it looks like the following:

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

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

Teacher Cheat Sheet - Game Coding Challenges

Teacher Cheat Sheet - Game Coding Challenges Teacher Cheat Sheet - Game Coding Challenges Challenge #1 Movement: Make your sprite move across the screen. When it hits the walls, it must bounce off and keep moving. 1. The When Flag is clicked is your

More information

Google SketchUp/Unity Tutorial Basics

Google SketchUp/Unity Tutorial Basics Software used: Google SketchUp Unity Visual Studio Google SketchUp/Unity Tutorial Basics 1) In Google SketchUp, select and delete the man to create a blank scene. 2) Select the Lines tool and draw a square

More information

Creating an Animated Sea Aquarium/Getting Acquainted with Power Point

Creating an Animated Sea Aquarium/Getting Acquainted with Power Point Creating an Animated Sea Aquarium/Getting Acquainted with Power Point Directions: Power Point is a presentation graphics application program you use to organize and present information. Whether you are

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

IAT 445 Lab 10. Special Topics in Unity. Lanz Singbeil

IAT 445 Lab 10. Special Topics in Unity. Lanz Singbeil IAT 445 Lab 10 Special Topics in Unity Special Topics in Unity We ll be briefly going over the following concepts. They are covered in more detail in your Watkins textbook: Setting up Fog Effects and a

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

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

General Directions for Creating a Program with Flash

General Directions for Creating a Program with Flash General Directions for Creating a Program with Flash These directions are meant to serve as a starting point for a project in Flash. With them, you will create four screens or sections: 1) Title screen;

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

NOTTORUS. Getting Started V1.00

NOTTORUS. Getting Started V1.00 NOTTORUS Getting Started V1.00 2016 1. Introduction Nottorus Script Editor is a visual plugin for generating and debugging C# Unity scripts. This plugin allows designers, artists or programmers without

More information

Word 1 Module 2. Word 1. Module 2

Word 1 Module 2. Word 1. Module 2 Word 1 Module 2 Revised 5/1/17 Contents Create a New Document...2 Class Walkthrough 2.1...2 Entering Text into a Document...2 Class Walkthrough 2.2...2 Lines of Text vs. Paragraphs...2 Insertion Point...3

More information

introduction Objective Modelling the cover

introduction Objective Modelling the cover Tutorials PIVOT JOINT Pivot Joint (LINK) tutorial /8 Related files PivotJointPackage2007.zip includes Automation Module.vcm and AutomationModule.3ds Description The Pivot Joint Package 2007 includes all

More information

Blender for Trainz > Table of Contents > Blender Tools > 3D Editor > Edit Mode > Edge Intersect VTX Last updated: October 16, 2015

Blender for Trainz > Table of Contents > Blender Tools > 3D Editor > Edit Mode > Edge Intersect VTX Last updated: October 16, 2015 Edge Intersect VTX Access: Keyboard shortcut: Mode: Panel: Menu: W-KEY > TinyCAD > VTX AUTO 3D Editor: Edit mode None None Add-on: tinycad Edge Tools http://wiki.blender.org/index.php/extensions:2.6/py/scripts/modeling/mesh_tinycad

More information

Exit: These control how the object exits the slide. For example, with the Fade animation the object will simply fade away.

Exit: These control how the object exits the slide. For example, with the Fade animation the object will simply fade away. PowerPoint 2013 Animating Text and Objects Introduction In PowerPoint, you can animate text and objects such as clip art, shapes, and pictures. Animation or movement on the slide can be used to draw the

More information

Auto Texture Tiling Tool

Auto Texture Tiling Tool Table of Contents Auto Texture Tiling Tool Version 1.77 Read Me 1. Basic Functionality...2 1.1 Usage...2 1.2 Unwrap Method...3 1.3 Mesh Baking...4 1.4 Prefabs...5 2. Gizmos and Editor Window...6 1.1 Offset...6

More information

Section 28: 2D Gaming: Continuing with Unity 2D

Section 28: 2D Gaming: Continuing with Unity 2D Section 28: 2D Gaming: Continuing with Unity 2D 1. Open > Assets > Scenes > Game 2. Configuring the Layer Collision Matrix 1. Edit > Project Settings > Tags and Layers 2. Create two new layers: 1. User

More information

2.2 - Layouts. Bforartists Reference Manual - Copyright - This page is Public Domain

2.2 - Layouts. Bforartists Reference Manual - Copyright - This page is Public Domain 2.2 - Layouts Introduction...2 Switching Layouts...2 Standard Layouts...3 3D View full...3 Animation...3 Compositing...3 Default...4 Motion Tracking...4 Scripting...4 UV Editing...5 Video Editing...5 Game

More information

Scratch Lesson 2: Movies Made From Scratch Lesson Framework

Scratch Lesson 2: Movies Made From Scratch Lesson Framework Scratch Lesson 2: Movies Made From Scratch Lesson Framework Scratch makes it easy to program your own interactive stories, games, and animations and share your creations on the web. As you create and share

More information

How to start your Texture Box Project!

How to start your Texture Box Project! How to start your Texture Box Project! Shapes, naming surfaces, and textures. Lightwave 11.5 Part One: Create Your Shape Choose Start, Programs, New Tek, Lightwave and Modelor (the orange one). 1.In one

More information

Creating the Tilt Game with Blender 2.49b

Creating the Tilt Game with Blender 2.49b Creating the Tilt Game with Blender 2.49b Create a tilting platform. Start a new blend. Delete the default cube right click to select then press X and choose Erase Selected Object. Switch to Top view (NUM

More information

TUTORIAL: MoveYourRobot with Unity3D You created your own robot with servo- motors and you are wondering how to control it.

TUTORIAL: MoveYourRobot with Unity3D You created your own robot with servo- motors and you are wondering how to control it. TUTORIAL: MoveYourRobot with Unity3D You created your own robot with servo- motors and you are wondering how to control it. This package provide environment and scripts to be easily able to control your

More information

Reporting Center. Primary (Stand-Alone) Interface

Reporting Center. Primary (Stand-Alone) Interface Reporting Center The Reporting Center is where you will go to run or create reports on projects. It can be accessed in any of the follow ways, each with a slightly different user interface and functionality.

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

Auto Texture Tiling Tool

Auto Texture Tiling Tool Table of Contents Auto Texture Tiling Tool Version 1.80 Read Me 1. Basic Functionality...2 1.1 Usage...2 1.1.1 Dynamic Texture Tiling...2 1.1.2 Basic Texture Tiling...3 1.1.3 GameObject menu item...3 1.2

More information

How to Locate and Start PowerPoint 2007? Click on Start Click on All Programs Click on Microsoft Office Folder

How to Locate and Start PowerPoint 2007? Click on Start Click on All Programs Click on Microsoft Office Folder How to Locate and Start PowerPoint 2007? Click on Start Click on All Programs Click on Microsoft Office Folder Click on Microsoft Office PowerPoint 2007 Menu Bar Office Button How to Save a PowerPoint

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

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

WinSCP. Author A.Kishore/Sachin

WinSCP. Author A.Kishore/Sachin WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

The Shadow Rendering Technique Based on Local Cubemaps

The Shadow Rendering Technique Based on Local Cubemaps The Shadow Rendering Technique Based on Local Cubemaps Content 1. Importing the project package from the Asset Store 2. Building the project for Android platform 3. How does it work? 4. Runtime shadows

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

STEP 1: Download Unity

STEP 1: Download Unity STEP 1: Download Unity In order to download the Unity Editor, you need to create an account. There are three levels of Unity membership. For hobbyists, artists, and educators, The free version is satisfactory.

More information

Lesson 3 Creating and Using Graphics

Lesson 3 Creating and Using Graphics Lesson What you will learn: how to delete a sprite and import a new sprite how to draw using the pen feature of Scratch how to use the pen up and pen down feature how to change the colour of the pen how

More information

COMS W4172 : 3D User Interfaces Spring 2017 Prof. Steven Feiner Date out: January 26, 2017 Date due: January 31, 2017

COMS W4172 : 3D User Interfaces Spring 2017 Prof. Steven Feiner Date out: January 26, 2017 Date due: January 31, 2017 COMS W4172 : 3D User Interfaces Spring 2017 Prof. Steven Feiner Date out: January 26, 2017 Date due: January 31, 2017 Assignment 0.5: Installing and Testing Your Android or ios Development Environment

More information

Terrain. Unity s Terrain editor islands topographical landscapes Mountains And more

Terrain. Unity s Terrain editor islands topographical landscapes Mountains And more Terrain Unity s Terrain editor islands topographical landscapes Mountains And more 12. Create a new Scene terrain and save it 13. GameObject > 3D Object > Terrain Textures Textures should be in the following

More information

Adobe Flash CS4 Part 3: Animation

Adobe Flash CS4 Part 3: Animation CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Flash CS4 Part 3: Animation Fall 2010, Version 1.0 Table of Contents Introduction...2 Downloading the Data Files...2 Understanding

More information

VirMuF Manual V 0.5 1

VirMuF Manual V 0.5 1 VirMuF Manual V 0.5 1 Contents Overview... 3 How it Works... 3 Installation... 3 Usage... 4 Navigation... 4 Inspection... 5 Information... 6 Measure... 6 Cross Section... 7 Light... 8 Related Web Links...

More information

Toon Boom Harmony Advanced V15.0

Toon Boom Harmony Advanced V15.0 Advanced Toon Boom Harmony Advanced V15.0 Gaming Guide TOON BOOM ANIMATION INC. 4200 Saint-Laurent, Suite 1020 Montreal, Quebec, Canada H2W 2R2 +1 514 278 8666 contact@toonboom.com toonboom.com Harmony

More information

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

Pacman. you want to see how the maze was created, open the file named unity_pacman_create_maze.

Pacman. you want to see how the maze was created, open the file named unity_pacman_create_maze. Pacman Note: I have started this exercise for you so you do not have to make all of the box colliders. If you want to see how the maze was created, open the file named unity_pacman_create_maze. Adding

More information

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item

1 Ctrl + X Cut the selected item. 2 Ctrl + C (or Ctrl + Insert) Copy the selected item. 3 Ctrl + V (or Shift + Insert) Paste the selected item Tips and Tricks Recorder Actions Library XPath Syntax Hotkeys Windows Hotkeys General Keyboard Shortcuts Windows Explorer Shortcuts Command Prompt Shortcuts Dialog Box Keyboard Shortcuts Excel Hotkeys

More information

Unity Game Development

Unity Game Development Unity Game Development 1. Introduction to Unity Getting to Know the Unity Editor The Project Dialog The Unity Interface The Project View The Hierarchy View The Inspector View The Scene View The Game View

More information

Dialog XML Importer. Index. User s Guide

Dialog XML Importer. Index. User s Guide Dialog XML Importer User s Guide Index 1. What is the Dialog XML Importer? 2. Setup Instructions 3. Creating Your Own Dialogs Using articy:draft a. Conditions b. Effects c. Text Tokens 4. Importing Your

More information

The Library is displayed as a window, and its contents are accessed by dragging and dropping onto the Stage.

The Library is displayed as a window, and its contents are accessed by dragging and dropping onto the Stage. FLASH FREQUENTLY ASKED QUESTIONS - What is the Library? The Library is an area in which you store all content used in a Flash movie. In Flash terminology, each piece of content stored in the Library is

More information

Adobe Flash CS4 Part 4: Interactivity

Adobe Flash CS4 Part 4: Interactivity CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Flash CS4 Part 4: Interactivity Fall 2010, Version 1.0 Table of Contents Introduction... 2 Downloading the Data Files... 2

More information

User Manual v 1.0. Copyright 2018 Ghere Games

User Manual v 1.0. Copyright 2018 Ghere Games + User Manual v 1.0 Copyright 2018 Ghere Games HUD Status Bars+ for Realistic FPS Prefab Copyright Ghere Games. All rights reserved Realistic FPS Prefab Azuline Studios. Thank you for using HUD Status

More information

Dataflow Editor User Guide

Dataflow Editor User Guide - Cisco EFF, Release 1.0.1 Cisco (EFF) 1.0.1 Revised: August 25, 2017 Conventions This document uses the following conventions. Convention bold font italic font string courier font Indication Menu options,

More information

Author A.Kishore/Sachin WinSCP

Author A.Kishore/Sachin   WinSCP WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Getting Started with ShowcaseChapter1:

Getting Started with ShowcaseChapter1: Chapter 1 Getting Started with ShowcaseChapter1: In this chapter, you learn the purpose of Autodesk Showcase, about its interface, and how to import geometry and adjust imported geometry. Objectives After

More information

The Photo Gallery. Adding a Photo Gallery Page. Adding a Photo Gallery App

The Photo Gallery. Adding a Photo Gallery Page. Adding a Photo Gallery App Adding a Photo Gallery Page The Photo Gallery Above the Summary tab, in the list of Current Pages, click on the New Page button. Choose Photo Gallery from the Available Page Types. Give the page a name.

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

Windows 10 Essentials

Windows 10 Essentials Windows 10 Essentials User Interface START MENU Start typing to search for applications or files Once the start menu is open you can change its size by dragging a side Right-click on an application and

More information

Apple idvd 11 Tutorial

Apple idvd 11 Tutorial Apple idvd 11 Tutorial GETTING STARTED idvd is a program that allows you to create a DVD with menus and graphics of a professionally made commercial disc to play on your home DVD player. To Begin your

More information

Creating a Basic Application for DataPlus Mobile November 18, 2015

Creating a Basic Application for DataPlus Mobile November 18, 2015 Creating a Basic Application for DataPlus Mobile November 18, 2015 An application in DataPlus Mobile determines the types of features and their attributes that can be collected in the field. In this support

More information

Flow Sim. Chapter 12. F1 Car. A. Enable Flow Simulation. Step 1. If necessary, open your ASSEMBLY file.

Flow Sim. Chapter 12. F1 Car. A. Enable Flow Simulation. Step 1. If necessary, open your ASSEMBLY file. Chapter 12 F1 Car Flow Sim A. Enable Flow Simulation. Step 1. If necessary, open your ASSEMBLY file. Step 2. If necessary, turn on Flow Simulation, click the flyout of Options on the Standard toolbar and

More information

Keynote Basics Website:

Keynote Basics Website: Keynote Basics Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages. If you

More information

BASIC MICROSOFT POWERPOINT

BASIC MICROSOFT POWERPOINT BASIC MICROSOFT POWERPOINT PART ONE PHONE: 504-838-1144 IT Training Team Jefferson Parish Library EMAIL: jpltrain@jplibrary.net In this class you will learn to: Launch, close, and interact with Microsoft

More information

Qwizdom Training Guide Q6 / Q7

Qwizdom Training Guide Q6 / Q7 Qwizdom Training Guide Q6 / Q7 2011 - Qwizdom Inc. Contents General Information 1 HID Host 1 Connect Overview 1 Remote Configuration 2 Installing State Standards 2 Creating Classes 3 Creating a Participant

More information

Ok the first problem I see with the character is that it has not only the individual animations but also the combined animation. you can do either/or but no reason to keep both as it just makes the model

More information

Mechanic Animations. Mecanim is Unity's animation state machine system.

Mechanic Animations. Mecanim is Unity's animation state machine system. Mechanic Animations Mecanim is Unity's animation state machine system. It essentially allows you to create 'states' that play animations and define transition logic. Create new project Animation demo.

More information

Switch between open apps Close the active item, or exit the active app

Switch between open apps Close the active item, or exit the active app Ctrl + X Ctrl + C (or Ctrl + Insert) Ctrl + V (or Shift + Insert) Ctrl + Z Alt + Tab Alt + F4 L D F2 F3 F4 F5 F6 F10 Alt + F8 Alt + Esc Alt + underlined letter Alt + Enter Alt + Spacebar Alt + Left arrow

More information

Double Click in in this space to open the the Calculator/Formula

Double Click in in this space to open the the Calculator/Formula TASK #2 Math II - FATHOM 10 coin Flips (How many coins would you predict land on heads?) Open a new Fathom Workspace. Drag a collection,, from the shelf into the workspace. Open the collection by positioning

More information

Plotting Points. By Francine Wolfe Professor Susan Rodger Duke University June 2010

Plotting Points. By Francine Wolfe Professor Susan Rodger Duke University June 2010 Plotting Points By Francine Wolfe Professor Susan Rodger Duke University June 2010 Description This tutorial will show you how to create a game where the player has to plot points on a graph. The method

More information

UI Elements. If you are not working in 2D mode, you need to change the texture type to Sprite (2D and UI)

UI Elements. If you are not working in 2D mode, you need to change the texture type to Sprite (2D and UI) UI Elements 1 2D Sprites If you are not working in 2D mode, you need to change the texture type to Sprite (2D and UI) Change Sprite Mode based on how many images are contained in your texture If you are

More information

Getting Started in FCS Express for Previous FlowJo Users

Getting Started in FCS Express for Previous FlowJo Users Getting Started in FCS Express for Previous FlowJo Users The instructions below emphasize similarities and differences between FCS Express 5 and FlowJo v10 and are meant to serve as a translation guide

More information

CS248 Lecture 2 I NTRODUCTION TO U NITY. January 11 th, 2017

CS248 Lecture 2 I NTRODUCTION TO U NITY. January 11 th, 2017 CS248 Lecture 2 I NTRODUCTION TO U NITY January 11 th, 2017 Course Logistics Piazza Staff Email: cs248-win1617-staff@lists.stanford.edu SCPD Grading via Google Hangouts: cs248.winter2017@gmail.com Homework

More information

Keynote 08 Basics Website:

Keynote 08 Basics Website: Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages and the spreadsheet program

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

MCDOUGAL LITTELL EASYPLANNER USER S GUIDE

MCDOUGAL LITTELL EASYPLANNER USER S GUIDE MCDOUGAL LITTELL EASYPLANNER USER S GUIDE 1 Introduction The McDougal Littell EasyPlanner allows you to quickly and easily access Resource materials such as tests, quizzes, books, and other supporting

More information

Creating a Text Frame. Create a Table and Type Text. Pointer Tool Text Tool Table Tool Word Art Tool

Creating a Text Frame. Create a Table and Type Text. Pointer Tool Text Tool Table Tool Word Art Tool Pointer Tool Text Tool Table Tool Word Art Tool Picture Tool Clipart Tool Creating a Text Frame Select the Text Tool with the Pointer Tool. Position the mouse pointer where you want one corner of the text

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

Menu Symbols. Menu Symbol. Key on Keyboard

Menu Symbols. Menu Symbol. Key on Keyboard Menu Symbols Menu Symbol Key on Keyboard Command/Apple Key (like Control on a PC) Also written as Cmd Option (like Alt on a PC) Shift Control (Control-click = Right-click) Tab Return Enter (on Number Pad)

More information

TUTORIAL 03: RHINO DRAWING & ORGANIZATIONAL AIDS. By Jeremy L Roh, Professor of Digital Methods I UNC Charlotte s School of Architecture

TUTORIAL 03: RHINO DRAWING & ORGANIZATIONAL AIDS. By Jeremy L Roh, Professor of Digital Methods I UNC Charlotte s School of Architecture TUTORIAL 03: RHINO DRAWING & ORGANIZATIONAL AIDS By Jeremy L Roh, Professor of Digital Methods I UNC Charlotte s School of Architecture Modeling in 3D requires the use of various drawing and organizational

More information

Start Menu Log off Turn Off Computer Run Search Help and Support

Start Menu Log off Turn Off Computer Run Search Help and Support Windows Basics Start Menu Start Menu Log off - Log off the current user. Turn Off Computer - shutdown, restart and standby. Run - Used to manually start executable files (programs). Search - Search your

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

Add in a new balloon sprite, and a suitable stage backdrop.

Add in a new balloon sprite, and a suitable stage backdrop. Balloons Introduction You are going to make a balloon-popping game! Step 1: Animating a balloon Activity Checklist Start a new Scratch project, and delete the cat sprite so that your project is empty.

More information

EZware Quick Start Guide

EZware Quick Start Guide EZware Quick Start Guide Your Industrial Control Solutions Source www.maplesystems.com For use as the following: Evaluation Tool for Prospective Users Introductory Guide for New Customers Maple Systems,

More information

Installing the Software

Installing the Software Logic User s Guide Note: this is a new version to support the 1.1.0+ software. Please let us know if you can t find what you re looking for http://www.saleae.com/contact Contents Installing the Software...

More information

House Build Tutorial NAME: GRADE: ARTD 240 3D Modeling & Animation Deborah Ciccarelli, Assistant Professor

House Build Tutorial NAME: GRADE: ARTD 240 3D Modeling & Animation Deborah Ciccarelli, Assistant Professor ARTD 240 3D Modeling & Animation Deborah Ciccarelli, Assistant Professor NAME: GRADE: House Build Tutorial Goal: Create a model of a house by referencing drafts of a front and side elevation. Follow the

More information

EFT - Engineering Field Tools

EFT - Engineering Field Tools EFT - Engineering Field Tools EFT Framework User Documentation August, 2007 Table of Contents EFT Framework August, 2007 Introduction... 2 Interface Overview... 2 Tree Area... 2 Contents Area... 3 Status

More information

Document Editor Features Available in HTML5. it just makes sense

Document Editor Features Available in HTML5. it just makes sense Document Editor Features Available in HTML5 it just makes sense March, 2018 Document Editor Features Available in HTML5 As part of the 5.2 release, the Document Editor is now available in HTML5 and provides

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

QUICK START GUIDE. Quick Start Guide. This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps.

QUICK START GUIDE. Quick Start Guide. This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps. Quick Start Guide This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps. NOTE: All devices need active internet connectivity. Google Chrome is a browser that

More information

Cruising Sacramento/ A PowerPoint Slide Show (Project #8)

Cruising Sacramento/ A PowerPoint Slide Show (Project #8) Cruising Sacramento/ A PowerPoint Slide Show (Project #8) Start PowerPoint: Microsoft Office PowerPoint 2007 PowerPoint should open as a presentation. If not Click the Office button and select New.. Select

More information

MIXED REALITY (AR & VR) WITH UNITY 3D (Microsoft HoloLens)

MIXED REALITY (AR & VR) WITH UNITY 3D (Microsoft HoloLens) MIXED REALITY (AR & VR) WITH UNITY 3D (Microsoft HoloLens) 1. INTRODUCTION TO Mixed Reality (AR & VR) What is Virtual Reality (VR) What is Augmented reality(ar) What is Mixed Reality Modern VR/AR experiences

More information

ST NICHOLAS COLLEGE RABAT MIDDLE SCHOOL HALF YEARLY EXAMINATIONS February 2016

ST NICHOLAS COLLEGE RABAT MIDDLE SCHOOL HALF YEARLY EXAMINATIONS February 2016 ST NICHOLAS COLLEGE RABAT MIDDLE SCHOOL HALF YEARLY EXAMINATIONS February 2016 Mark Level 5-8 Year 7 Information and Communication Technology TIME: 1h 30min Question 1 2 3 4 5 6 7 Global Mark Max. Mark

More information

Getting Familiar with Microsoft Word 2010 for Windows

Getting Familiar with Microsoft Word 2010 for Windows Lesson 1: Getting Familiar with Microsoft Word 2010 for Windows Microsoft Word is a word processing software package. You can use it to type letters, reports, and other documents. This tutorial teaches

More information

Terrain. Unity s Terrain editor islands topographical landscapes Mountains And more

Terrain. Unity s Terrain editor islands topographical landscapes Mountains And more Terrain Unity s Terrain editor islands topographical landscapes Mountains And more 12. Create a new Scene terrain and save it 13. GameObject > 3D Object > Terrain Textures Textures should be in the following

More information

You can delete the default blank background by clicking on its Delete button.

You can delete the default blank background by clicking on its Delete button. Quiz Project In this project, the application presents the user with an electronic quick made up of five questions. Before you start scripting, you need to have your questions ready. Create 5 trivia questions

More information

2. Write Your Test Questions & Create Interactions Page 12

2. Write Your Test Questions & Create Interactions Page 12 This guide will show you how to create a computer-based test using Authorware 4.0 or higher. These instructions are for use on both Macintosh and IBM (Windows) computers. It is recommended that you purchase

More information

KIN 147 Lab 06: Ground Reaction Force (GRF) Data Analysis Excel analyses work much better on PCs than on Macs (especially older Macs)

KIN 147 Lab 06: Ground Reaction Force (GRF) Data Analysis Excel analyses work much better on PCs than on Macs (especially older Macs) KIN 147 Lab 06: Ground Reaction Force (GRF) Data Analysis Excel analyses work much better on PCs than on Macs (especially older Macs) Your goal is to correctly analyze GRF data Analyzing the GRF Data from

More information

A BEGINNERS GUIDE TO USING ADOBE PREMIERE PRO

A BEGINNERS GUIDE TO USING ADOBE PREMIERE PRO A BEGINNERS GUIDE TO USING ADOBE PREMIERE PRO 1. Starting out. To begin using Adobe Premiere Pro please choose the icon in CORE APPS on the start menu. The first thing you will see is a box asking whether

More information

Pick up a book! 2. Is a reader on screen right now?! 3. Embedding Images! 3. As a Text Mesh! 4. Code Interfaces! 6. Creating a Skin! 7. Sources!

Pick up a book! 2. Is a reader on screen right now?! 3. Embedding Images! 3. As a Text Mesh! 4. Code Interfaces! 6. Creating a Skin! 7. Sources! Noble Reader Guide Noble Reader version 1.1 Hi, Toby here from Noble Muffins. This here is a paginating text kit. You give it a text; it ll lay it out on a skin. You can also use it as a fancy text mesh

More information

Module 4: Creating Content Lesson 5: Creating Visualizations Try Now!

Module 4: Creating Content Lesson 5: Creating Visualizations Try Now! Module 4: Creating Content Lesson 5: Creating Visualizations Try Now! In this Try Now! exercise, you will be creating a visualization in your Sales domain, based on the data you uploaded from your Microsoft

More information

CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET

CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET CHAPTER 2: USE WINDOWS 7 TO MANAGE FILES AND PROGRAMS AND TO BROWSE THE INTERNET Quick Summary A program is a set of instructions that a computer uses to accomplish a task, such as word processing, accounting,

More information

How to create an animated face

How to create an animated face Adobe Flash CS4 Activity 5.1 guide How to create an animated face This activity walks you step by step through the process of creating a simple animation by using Adobe Flash CS4. You use drawing tools

More information

Animate a Character Cards

Animate a Character Cards Animate a Character Cards Bring characters to life with animation. Set of 8 cards Animate a Character Cards Try these cards in any order: Move with Arrow Keys Make a Character Jump Switch Poses Glide from

More information

HP POS Keyboard with MSR

HP POS Keyboard with MSR One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 HP POS Keyboard with MSR HP Part number: FK218AA This document

More information