Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

AnimationState.normalizedTime

public float normalizedTime;

Description

The normalized time of the animation.

A value of 1 is the end of the animation. A value of 0.5 is the middle of the animation.

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour { public Animation anim;

void Start() { // Fast forward to the middle of the animation anim["Walk"].normalizedTime = 0.5f; } }

Did you find this page useful? Please give it a rating: