ceyhuntasci

Results 1 issues of ceyhuntasci

My animation is basicly shows the valid words user found in order. My method does this: if (showWordsSequence.IsPlaying()) { showWordsSequence.Append(group.transform.DOScale(1f, 0.6f)); showWordsSequence.AppendInterval(0.2f); showWordsSequence.Append(group.transform.DOScale(0f, 0.6f)); showWordsSequence.Append(DOVirtual.DelayedCall(0.2f,() => Destroy(group.gameObject))); } else {...