当前位置:   article > 正文

unity序列帧的实现。包括三种效果,后续再补充_unity 序列帧换装

unity 序列帧换装

效果1:从头播放到尾
效果2:重复播放
效果3:正放、倒放交替播放

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class XuLieZhen : MonoBehaviour
{
    [Header("序列帧路径")]
    public string Path;
    [Header("更换间隔")]
    public float time = 0.01f;
    float delTime;
    [Header("是否循环播放")]
    bool IsLoop;
    [Header("从第几张开始循环")]
    public int LoopIndex;
    [Header("来回效果,勾选isloop无效")]
    bool IsPingPang;
    int index = 0;
    List<Sprite> sprites = new List<Sprite>();
    bool IsPlay;
    bool iscanPingPang;//记录初始状态
    public enum LoopModle
    {
        NoLoop, CommonLoop, PingPang
    }
    public LoopModle loopPattern = new LoopModle();
    /// <summary>
    /// 开始读取
    /// </summary>
    private void Awake()
    {
        delTime = time;
        Resources.UnloadUnusedAssets();
        for (int i = 0; i < Resources.LoadAll<Sprite>(Path).Length; i++)
        {
            sprites.Add(Resources.LoadAll<Sprite>(Path)[i]);
        }
        iscanPingPang = IsPingPang;
    }
    /// <summary>
    /// 开始时 初始化状态
    /// </summary>
    private void OnEnable()
    {
        IsPingPang = iscanPingPang;
        //if (!IsPingPang) IsPlay = true;
        //if (IsPingPang) StartCoroutine("PingPang");
        switch (loopPattern)
        {
            case LoopModle.NoLoop:
                IsPlay = true;
                IsLoop = false;
                break;
            case LoopModle.CommonLoop:
                IsPlay = true;
                IsLoop = true;
                break;
            case LoopModle.PingPang:
                IsPingPang = true;
                StartCoroutine("PingPang");
                break;
        }
    }
    /// <summary>
    /// 结束时 初始化状态
    /// </summary>
    private void OnDisable()
    {
        index = 0;
        transform.GetComponent<Image>().sprite = sprites[0];
    }
    void Update()
    {
        if (IsPlay) ChangePictures(IsLoop);
    }
    /// <summary>
    /// 播放序列帧
    /// </summary>
    /// <param name="isLoop">是否循环播放</param>
    void ChangePictures(bool isLoop)
    {
        time -= Time.deltaTime;
        if (time < 0)
        {
            transform.GetComponent<Image>().sprite = sprites[index];
            time = delTime;
            index++;
            if (index >= sprites.Count)
            {
                if (isLoop)
                {
                    index = LoopIndex;
                }
                else
                {
                    index = sprites.Count - 1;
                    IsPlay = false;
                }
            }
        }
    }
    /// <summary>
    /// pingpang效果
    /// </summary>
    /// <returns></returns>
    IEnumerator PingPang()
    {
        transform.GetComponent<Image>().sprite = sprites[index];
        yield return new WaitForSeconds(delTime);
        if (IsPingPang)
        {
            index++;
            if (index > sprites.Count - 1)
            {
                index = sprites.Count - 1;
                IsPingPang = false;
            }
        }
        else
        {
            index--;
            if (index < LoopIndex)
            {
                index = LoopIndex;
                IsPingPang = true;
            }
        }
        StopCoroutine("PingPang");
        StartCoroutine("PingPang");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131

代码很简单,怎么使用直接看代码就能明白。关键是要填好面板上的信息。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/138223
推荐阅读
相关标签
  

闽ICP备14008679号