AnimationState.speed 速度

var speed : float

Description描述

The playback speed of the animation. 1 is normal playback speed.

动画的播放速度。1为正常速度。

A negative playback speed will play the animation backwards.

负值将回放动画。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		animation["Walk"].speed = -1.0F;
		animation["Walk"].speed = 2;
	}
}
// Walk backwards
// 向后走
animation["Walk"].speed = -1.0;

// Walk at double speed
// 2倍加速播放
animation["Walk"].speed = 2;
最后修改:2011年1月7日 Friday 0:13

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。