按钮dotween动态效果
Posted All_Nighter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按钮dotween动态效果相关的知识,希望对你有一定的参考价值。
//改变按钮大小 public void BtnScale(Transform transform) { //在自身的大小上加上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(); }
以上是关于按钮dotween动态效果的主要内容,如果未能解决你的问题,请参考以下文章
Unity 之 月签到累计签到代码实现(ScriptableObject应用 | DoTween入场动画)