Skip to content

Commit 3de7221

Browse files
committed
A flexible label powered by IntVariables
1 parent defe7c8 commit 3de7221

File tree

3 files changed

+84
-0
lines changed

3 files changed

+84
-0
lines changed

UI.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UI/IntVariableTMPLabel.cs

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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+
}

UI/IntVariableTMPLabel.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)