How to make actors do the specific action one after another in Libgdx
问题 I've got three questions.>.< I have 2 actors(actor1,actor2), and an action(eg. ScaleTo). My willing is to make actor1 do the scaleTo firstly,and then(maybe after two seconds) actor2. Or randomly choose the actor to behave the action, and repeat the process n times. Are there any methods like squenceAction, but could be like this "sequence(Actor1.action,delay,Actor2.action,......)" Or is there be the timeline API which i can put the action of actor on several specific time points? 回答1: not if