Unity Learn home
View Tutorial Content
Steps

Controlling Animation

Tutorial
Beginner
45 Mins
(365)
Summary
This tutorial covers the basics of controlling animation in Unity. You'll gain an understanding of the Animator component, Animator controllers, blend trees, and how to control animations with scripts.
Select your Unity version
Last updated: December 14, 2021
4.x
Language
English

1.The Animator Component

The Animator Component binds Unity's animation system to a game object. In this video you will learn what this component does and how you can use it to start animating objects.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)


2.The Animator Controller

Animator Controllers are state machines that determine which animations are currently being played and blends between animations seamlessly. In this video you will learn how to make animator controllers and apply different animations and states to it.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)


3.Animator Controller Layers

Animator Controller Layers allow animators to run multiple animations at the same time. These can be useful for simplifying your animation structure while adding more power. In this video you will learn how to create and use animator controller layers.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)


4.Animator Scripting

Scripting is what allows us to really bring a model's animations to life. In this video you will learn how to utilize the animator class in code to control awesome animations.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)

EthanScript

using UnityEngine; using System.Collections; public class EthanScript : MonoBehaviour { Animator anim; int jumpHash = Animator.StringToHash("Jump"); int runStateHash = Animator.StringToHash("Base Layer.Run"); void Start () { anim = GetComponent<Animator>(); } void Update () { float move = Input.GetAxis ("Vertical"); anim.SetFloat("Speed", move); AnimatorStateInfo stateInfo = anim.GetCurrentAnimatorStateInfo(0); if(Input.GetKeyDown(KeyCode.Space) && stateInfo.nameHash == runStateHash) { anim.SetTrigger (jumpHash); } } }

js

#pragma strict var anim : Animator; var jumpHash : int = Animator.StringToHash("Jump"); var runStateHash : int = Animator.StringToHash("Base Layer.Run"); function Start () { anim = GetComponent("Animator"); } function Update () { var move : float = Input.GetAxis ("Vertical"); anim.SetFloat("Speed", move); var stateInfo : AnimatorStateInfo = anim.GetCurrentAnimatorStateInfo(0); if(Input.GetKeyDown(KeyCode.Space) && stateInfo.nameHash == runStateHash) { anim.SetTrigger (jumpHash); } }

boo

import UnityEngine import System.Collections public class EthanScript(MonoBehaviour): private anim as Animator private jumpHash as int = Animator.StringToHash('Jump') private runStateHash as int = Animator.StringToHash('Base Layer.Run') private def Start(): anim = GetComponent() private def Update(): move as single = Input.GetAxis('Vertical') anim.SetFloat('Speed', move) stateInfo as AnimatorStateInfo = anim.GetCurrentAnimatorStateInfo(0) if Input.GetKeyDown(KeyCode.Space) and (stateInfo.nameHash == runStateHash): anim.SetTrigger(jumpHash)

5.Blend Trees

Blend Trees allow you to mix a combination of multiple animations together to get custom results. In this video you will learn about blends trees and how to create them in your games.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)


6.Animator Sub-state Machine hierarchies

Learn how to organise your animator controllers using state machine hierarchies.
This content is hosted by a third party provider that does not allow video views without acceptance of Targeting Cookies. Please set your cookie preferences for Targeting Cookies to yes if you wish to view videos from these providers.
Type caption for embed (optional)


Controlling Animation
Controlling Animation
General Tutorial Discussion
3
4
1. The Animator Component
6
3
2. The Animator Controller
0
0
3. Animator Controller Layers
1
1
4. Animator Scripting
1
1
5. Blend Trees
1
1
6. Animator Sub-state Machine hierarchies
0
0