正規化されたアニメーションの再生時間。
1の値はアニメーションの最後です。0.5はアニメーションのちょうど真ん中です。
// Fast forward to the middle of the animation animation["Walk"].normalizedTime = 0.5;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { animation["Walk"].normalizedTime = 0.5F; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: animation['Walk'].normalizedTime = 0.5F