Right now I want to first call a method Method1()
after my tween got completed and after that I want to call another method Method2()
:
DOTween.Sequence().Join(tweens).OnComplete(() => Method1()).OnComplete(() => Method2());
Strangely only Method2()
gets called.
Does anyone know why?
@Demigiant