播放动画的代码

Posted 礼桀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了播放动画的代码相关的知识,希望对你有一定的参考价值。

 1 using UnityEngine;
 2 using System.Collections;
 3 
 4 public class hero : MonoBehaviour
 5 {
 6     private bool animation = true;       //动画开关
 7 
 8     public int frameCountPerSecond = 10; //每秒播放10帧
 9     private float time = 0;              //计时器
10     
11     public Sprite[] sprite;              //存放sprite的数组
12 
13     // Update is called once per frame
14     void Update () {
15         if (animation)                  //如果开关打开的时候
16         {
17             time += Time.deltaTime;     //计时器开始计时
18             int frameIndex = (int)(time / (1f / frameCountPerSecond));  //声明一个指定帧(1,2,3,4......)
19             int frame = frameIndex % 2;                                 //当前只有两个动画所以和2求余,得出0,1,0,1......
20             this.GetComponent<SpriteRenderer>().sprite = sprite[frame]; //得到游戏组件并让它的sprite等于sprite[frame]
21         }
22     }
23 }

 

以上是关于播放动画的代码的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS动画

VSCode自定义代码片段7——CSS动画

VSCode自定义代码片段7——CSS动画

unity中怎么用代码控制动画播放

Unity -- Animation(旧版动画组件)和Animator(新版动画器组件)

unity 5.6 animation与anmimator