Unity帧动画
程序员文章站
2024-03-25 20:05:10
...
Unity帧动画
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class FrameAnimation : MonoBehaviour
{
public Sprite[] pictures;
public bool loop=false;
float frequence = 0.1f;
float calTime = 0f;
int index = 0;
Image img;
// Start is called before the first frame update
void Start()
{
img = GetComponent();
img.sprite = pictures[index];
}
// Update is called once per frame
void Update()
{
if (Time.time - calTime>frequence)
{
if (index==pictures.Length-1)
{
index = 0;
}
img.sprite = pictures[++index];
calTime = Time.time;
}
}
}
上一篇: mysql存储数据乱码问题 博客分类: MySql
下一篇: 实现圆边框的渐变色
推荐阅读
-
css3 动画的播放、暂停和重新开始
-
Android动画入门二---Tween Animation
-
Unity3D简单的帧同步方案
-
真Unity3d_比较5个帧同步框架的实现
-
Unity帧动画
-
Animate Css动画库使用
-
CSS3实战开发:手把手教你鼠标滑动特效开发 博客分类: div+csscss3 csscss3动画特效
-
CSS3实战开发:手把手教大家搜索表单发光特效实战开发 博客分类: css3div+css animationcsscss3动画特效
-
CSS3实战开发: 手把手教大家实战开发鼠标划过图片动画特效(第二弹) 博客分类: css3div+css csscss3css3动画特效css动画特效实战开发
-
CSS3实战开发:仿天猫首页图片展示动画特效实战开发 博客分类: div+csscss3 csscss3transition仿天猫动画特效