Version: 2021.2
言語: 日本語
public AnimationClip clip ;

説明

アニメーションステートによって再生されるクリップ

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour { public Animation anim;

void Update() { // Prints the frame rate of the animation clip to the console print(anim["walk"].clip.frameRate); } }