Unity Learn home
View Tutorial Content
Steps

Timeline

Tutorial
Beginner
+0 XP
30 Mins
(411)
Summary
Begins with an overview of the features included in the Timeline Editor window, then describes getting started, working with tracks and animation clips, and using scripts to control Timeline events.
Select your Unity version
Last updated: May 16, 2023
2017.1
Language
English

1.Using Timeline: Overview

A quick overview of the features included in the Timeline Editor window and ways in which we might be able to use the Timeline tools in our game.
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.Using Timeline: Getting Started

How to access and get started with the Timeline Editor window.
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.Using Timeline: Understanding Tracks

Learn about the different track types in Timeline and how to record animation data onto a track.
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.Using Timeline: Working with Animation Clips

How to sequence and work with Animation clips inside of Timeline.
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)


5.Using Timeline: Custom Scripts

How to control the playable director and our Timeline sequences using a custom script.
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)

TimelineController

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Playables; using UnityEngine.Timeline; public class TimelineController : MonoBehaviour { public List<PlayableDirector> playableDirectors; public List<TimelineAsset> timelines; public void Play() { foreach (PlayableDirector playableDirector in playableDirectors) { playableDirector.Play (); } } public void PlayFromTimelines(int index) { TimelineAsset selectedAsset; if (timelines.Count <= index) { selectedAsset = timelines [timelines.Count - 1]; } else { selectedAsset = timelines [index]; } playableDirectors [0].Play (selectedAsset); } }

ButtonCollider

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; public class ButtonCollider : MonoBehaviour { public UnityEvent onSpacebar; public UnityEvent onReturn; public void OnTriggerStay() { if (Input.GetKeyDown(KeyCode.Space)) { if (onSpacebar != null) { onSpacebar.Invoke(); } } if (Input.GetKeyDown(KeyCode.Return)) { if (onReturn != null) { onReturn.Invoke(); } } } }

Timeline
Timeline
General Tutorial Discussion
1
2
1. Using Timeline: Overview
1
1
2. Using Timeline: Getting Started
0
0
3. Using Timeline: Understanding Tracks
0
0
4. Using Timeline: Working with Animation Clips
0
3
5. Using Timeline: Custom Scripts
0
0