1
+ using DG . Tweening ;
2
+ using JetBrains . Annotations ;
3
+ using Sirenix . OdinInspector ;
4
+ using TinyMatter . CardClash . Core ;
5
+ using TMPro ;
6
+ using UnityEngine ;
7
+ using UnityEngine . Assertions ;
8
+
9
+ namespace TinyMatter . Core . UI {
10
+
11
+ public class IntVariableTMPLabel : MonoBehaviour {
12
+ [ InfoBox ( "Leave blank if on this GameObject" ) ]
13
+ [ SerializeField ] private TMP_Text label ;
14
+
15
+ [ SerializeField ] private string stringFormat = "{0:n0}" ;
16
+
17
+ [ SerializeField ] private IntReference initialValue = new IntReference ( 0 ) ;
18
+
19
+ [ SerializeField ] private AnimationSetting animationSetting ;
20
+
21
+ private int currentValue = 0 ;
22
+
23
+ private void Awake ( ) {
24
+ if ( label == null ) {
25
+ label = GetComponent < TMP_Text > ( ) ;
26
+ }
27
+
28
+ Assert . IsNotNull ( label ) ;
29
+
30
+ UpdateLabel ( initialValue . Value ) ;
31
+ }
32
+
33
+
34
+ private void UpdateLabel ( int value , bool animated = false ) {
35
+ if ( animated ) {
36
+ //tween
37
+ DOTween . To ( ( ) => currentValue , val => {
38
+ currentValue = val ;
39
+ label . text = string . Format ( stringFormat , currentValue ) ;
40
+ } , value , animationSetting . duration )
41
+ . SetSpeedBased ( animationSetting . isSpeed )
42
+ . SetDelay ( animationSetting . delay )
43
+ . SetEase ( animationSetting ) ;
44
+
45
+ return ;
46
+ }
47
+
48
+ //not animated
49
+ currentValue = value ;
50
+ var text = string . Format ( stringFormat , currentValue ) ;
51
+ label . text = text ;
52
+ }
53
+
54
+ [ UsedImplicitly ]
55
+ public void SetLabel ( IntVariable intVariable ) {
56
+ UpdateLabel ( intVariable . Value ) ;
57
+ }
58
+
59
+ [ UsedImplicitly ]
60
+ public void AnimateLabel ( IntVariable intVariable ) {
61
+ UpdateLabel ( intVariable . Value , true ) ;
62
+ }
63
+ }
64
+
65
+ }
0 commit comments