-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathButtonAnimation.cs
83 lines (80 loc) · 2.19 KB
/
ButtonAnimation.cs
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
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using DG.Tweening;
using UnityEngine.UI;
public class ButtonAnimation : MonoBehaviour
{
[SerializeField] Transform tf;
[SerializeField] Ease ease = Ease.Linear;
[SerializeField] LoopType loopType = LoopType.Yoyo;
[SerializeField] float speed = 1f;
[SerializeField] bool isScale;
[SerializeField] Vector2 targetScale;
[SerializeField] bool isScaleWhenClick;
[SerializeField] bool autoShow;
[SerializeField] float timeDelay;
[SerializeField] GameObject objActive;
[SerializeField] bool lightEffect;
[SerializeField] float minX, maxX;
[SerializeField] bool playSoundClick = true;
Button button;
private void Start()
{
LoadInit();
}
private void OnEnable()
{
button = GetComponent<Button>();
if (autoShow)
{
objActive.SetActive(false);
button.interactable = false;
Invoke("Show", timeDelay);
}
}
void LoadInit()
{
if (tf == null)
tf = transform;
if (isScale)
{
tf.localScale = Vector2.one;
tf.DOScale(targetScale, speed).SetEase(ease).SetLoops(-1, loopType);
}
if (isScaleWhenClick)
{
button.onClick.RemoveAllListeners();
button.onClick.AddListener(delegate
{
if(playSoundClick)
AudioManager.PlaySound("Click UI");
tf.DOScale(targetScale, speed).SetEase(ease).OnComplete(delegate
{
tf.DOScale(Vector2.one, .1f);
});
});
}
if (lightEffect)
{
tf.localPosition = new Vector3(minX, 0, 0);
Invoke("ShowFx", Random.Range(0, 3f));
}
}
public void Scale()
{
tf.DOScale(targetScale, speed).SetEase(ease).OnComplete(delegate
{
tf.DOScale(Vector2.one, .1f);
});
}
void ShowFx()
{
tf.DOLocalMoveX(maxX, speed).SetLoops(-1, loopType);
}
void Show()
{
objActive.SetActive(true);
button.interactable = true;
}
}