feat: particles and new bank

This commit is contained in:
Gerard Gascón 2024-04-18 23:21:03 +02:00
parent 349552674d
commit 60265f3417
220 changed files with 13248 additions and 4917 deletions

View file

@ -21,8 +21,6 @@ namespace View.UI {
[SerializeField] private Animation growAnimation;
[SerializeField] private Animation endAnimation;
[SerializeField] private ParticleSystem growParticle;
private void Start() {
_click = FindObjectOfType<Dependencies>().ExpressionClick;
_customInput = FindObjectOfType<Dependencies>().CustomInput;
@ -52,8 +50,6 @@ namespace View.UI {
if (animator.CurrentAnimation == "Rosa_Grow")
animator.PlayUntil(IsLastGrowState(score, growPercentage) ? 1f : growPercentage);
growParticle.Play();
text.text = score.ToString();
_firstUpdate = false;
}