Version: 2021.3
言語: 日本語
public float speed ;

説明

アニメーションの再生速度。1 は通常の再生速度です。

マイナス値の再生速度の場合アニメーションは逆再生されます。

関連項目: AnimationState.timeAnimationState.wrapModeWrapMode

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; } }