动画的播放速度。1 为正常播放速度。
负播放速度将反向播放动画。
其他资源:AnimationState.time、AnimationState.wrapMode 属性以及 WrapMode 枚举。
using UnityEngine; using System.Collections;
public class ExampleScript : MonoBehaviour { public Animation anim;
void Start() { // Walk at normal speed anim["Walk"].speed = 1.0f;
// Walk at double speed anim["Walk"].speed = 2.0f; } }