91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Unity怎么實現序列幀動畫播放器

發布時間:2021-05-31 17:56:22 來源:億速云 閱讀:382 作者:Leah 欄目:編程語言

使用Unity怎么實現序列幀動畫播放器?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

using UnityEngine;
using UnityEngine.UI;
using System;

/// <summary>
/// 序列幀動畫播放器
/// 支持UGUI的Image和Unity2D的SpriteRenderer
/// </summary>
public class FrameAnimator : MonoBehaviour
{
 /// <summary>
 /// 序列幀
 /// </summary>
 public Sprite[] Frames{ get { return frames; } set { frames = value; } }

 [SerializeField]private Sprite[] frames = null;

 /// <summary>
 /// 幀率,為正時正向播放,為負時反向播放
 /// </summary>
 public float Framerate { get { return framerate; } set { framerate = value; } }

 [SerializeField] private float framerate = 20.0f;

 /// <summary>
 /// 是否忽略timeScale
 /// </summary>
 public bool IgnoreTimeScale{ get { return ignoreTimeScale; } set { ignoreTimeScale = value; } }

 [SerializeField]private bool ignoreTimeScale = true;

 /// <summary>
 /// 是否循環
 /// </summary>
 public bool Loop{ get { return loop; } set { loop = value; } }

 [SerializeField]private bool loop = true;

 //動畫曲線
 [SerializeField]private AnimationCurve curve = new AnimationCurve (new Keyframe (0, 1, 0, 0), new Keyframe (1, 1, 0, 0));

 /// <summary>
 /// 結束事件
 /// 在每次播放完一個周期時觸發
 /// 在循環模式下觸發此事件時,當前幀不一定為結束幀
 /// </summary>
 public event Action FinishEvent;

 //目標Image組件
 private Image image;
 //目標SpriteRenderer組件
 private SpriteRenderer spriteRenderer;
 //當前幀索引
 private int currentFrameIndex = 0;
 //下一次更新時間
 private float timer = 0.0f;
 //當前幀率,通過曲線計算而來
 private float currentFramerate = 20.0f;

 /// <summary>
 /// 重設動畫
 /// </summary>
 public void Reset ()
 {
 currentFrameIndex = framerate < 0 ? frames.Length - 1 : 0;
 }

 /// <summary>
 /// 從停止的位置播放動畫
 /// </summary>
 public void Play ()
 {
 this.enabled = true;
 }

 /// <summary>
 /// 暫停動畫
 /// </summary>
 public void Pause ()
 {
 this.enabled = false;
 }

 /// <summary>
 /// 停止動畫,將位置設為初始位置
 /// </summary>
 public void Stop ()
 {
 Pause ();
 Reset ();
 }
 
 //自動開啟動畫
 void Start ()
 {
 image = this.GetComponent<Image> ();
 spriteRenderer = this.GetComponent<SpriteRenderer> ();
 #if UNITY_EDITOR
 if (image == null && spriteRenderer == null) {
 Debug.LogWarning ("No available component found. 'Image' or 'SpriteRenderer' required.", this.gameObject);
 }
 #endif
 }

 void Update ()
 {
 //幀數據無效,禁用腳本
 if (frames == null || frames.Length == 0) {
 this.enabled = false;
 } else {
 //從曲線值計算當前幀率
 float curveValue = curve.Evaluate ((float)currentFrameIndex / frames.Length);
 float curvedFramerate = curveValue * framerate;
 //幀率有效
 if (curvedFramerate != 0) {
 //獲取當前時間
 float time = ignoreTimeScale ? Time.unscaledTime : Time.time;
 //計算幀間隔時間
 float interval = Mathf.Abs (1.0f / curvedFramerate);
 //滿足更新條件,執行更新操作
 if (time - timer > interval) {
 //執行更新操作
 DoUpdate ();
 }
 }
 #if UNITY_EDITOR
 else {
 Debug.LogWarning ("Framerate got '0' value, animation stopped.");
 }
 #endif
 }
 }

 //具體更新操作
 private void DoUpdate ()
 {
 //計算新的索引
 int nextIndex = currentFrameIndex + (int)Mathf.Sign (currentFramerate);
 //索引越界,表示已經到結束幀
 if (nextIndex < 0 || nextIndex >= frames.Length) {
 //廣播事件
 if (FinishEvent != null) {
 FinishEvent ();
 }
 //非循環模式,禁用腳本
 if (loop == false) {
 currentFrameIndex = Mathf.Clamp (currentFrameIndex, 0, frames.Length - 1);
 this.enabled = false;
 return;
 }
 }
 //鉗制索引
 currentFrameIndex = nextIndex % frames.Length;
 //更新圖片
 if (image != null) {
 image.sprite = frames [currentFrameIndex];
 } else if (spriteRenderer != null) {
 spriteRenderer.sprite = frames [currentFrameIndex];
 }
 //設置計時器為當前時間
 timer = ignoreTimeScale ? Time.unscaledTime : Time.time;
 }
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永和县| 永吉县| 禹州市| 平和县| 独山县| 聊城市| 星座| 色达县| 云霄县| 清河县| 武宣县| 清苑县| 南京市| 达州市| 习水县| 灵台县| 汾阳市| 肃北| 浏阳市| 遂宁市| 仪陇县| 渝中区| 东乡族自治县| 和田县| 屯昌县| 平乐县| 修水县| 宜兰县| 营山县| 华安县| 迭部县| 池州市| 棋牌| 夏邑县| 台北县| 兴国县| 阿合奇县| 资溪县| 武威市| 阿拉善左旗| 竹北市|