其他分享
首页 > 其他分享> > 直播app源代码,制作按钮呼吸效果

直播app源代码,制作按钮呼吸效果

作者:互联网

直播app源代码,制作按钮呼吸效果的相关代码

using UnityEngine;
using DG.Tweening;

public class ButtonBreath : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        //在自身的大小上加上0.2倍
        Vector3 effectScale = transform.localScale - new Vector3(0.2f, 0.2f, 0.2f);
        //设置动画
        Tweener tweener = transform.DOScale(effectScale, 1f);
        //设置动画loop属性
        tweener.SetLoops(-1, LoopType.Yoyo);
        tweener.Play();
    }
}

以上就是直播app源代码,制作按钮呼吸效果的相关代码, 更多内容欢迎关注之后的文章

标签:tweener,app,0.2,直播,按钮,源代码
来源: https://blog.csdn.net/yb1314111/article/details/113557151