Unity 6.3
0 онлайн 1 гость 3 в системе
Вход

AnimationState.clip

Declaration

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