アニメーションの再生速度。1 は通常の再生速度です。
マイナス値の再生速度の場合アニメーションは逆再生されます。
関連項目: AnimationState.time、AnimationState.wrapMode、WrapMode
using UnityEngine; using System.Collections;
public class ExampleScript : MonoBehaviour { public Animation anim;
void Start() { // Walk backwards anim["Walk"].speed = -1.0f;
// Walk at double speed anim["Walk"].speed = 2.0f; } }