仿照NGUI封装 DoTween功能系列(九)-TweenAlpha

本文介绍了一个使用 DG.Tweening 在 Unity 中实现 UI 元素透明度渐变动画的组件。该组件允许开发者轻松地在两个不同的透明度值之间进行动画过渡,适用于游戏开发和 UI 动效制作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

using DG.Tweening;
using UnityEngine;
using UnityEngine.UI;

namespace UGUITweener
{
    [ExecuteInEditMode]
    public class TweenAlpha : TweenerSetting
    {
        private Graphic graphic;

        [Range(0, 1)]
        public float from = 1.0f;

        [Range(0, 1)]
        public float to = 1.0f;

        public override void TweenPlay(bool value)
        {
            if (graphic)
            {
                float startValue = value ? from : to;
                float endvalue = value ? to : from;
                graphic.color = new Color(graphic.color.r, graphic.color.g, graphic.color.b, startValue);
                Color endColor = new Color(graphic.color.r, graphic.color.g, graphic.color.b, endvalue);
                tween = graphic.DOColor(endColor, duration).OnComplete(unityEvent.Invoke);
                SetTweenData();
            }
        }

        public override void SetStartToCurrentValue()
        {
            base.SetStartToCurrentValue();

            graphic = (Graphic)GetComponent<Image>() ? (Graphic)GetComponent<Image>() : (Graphic)GetComponent<RawImage>();
            from = graphic.color.a;
        }


#if UNITY_EDITOR

        [ContextMenu("设置 From")]
        private void SetFromAlpha()
        {
            if (graphic)
            {
                from = graphic.color.a;
            }
        }

        [ContextMenu("设置 Image Alpha")]
        private void SetImageAlpha()
        {
            if (graphic)
            {
                graphic.color = new Color(graphic.color.r, graphic.color.g, graphic.color.b, from);
            }
        }

#endif
    }
}

下载地址:https://download.youkuaiyun.com/download/yuyingwin/10846928

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值