let t1 = tween(left_node).to(1, { position: new Vec3(-375, 0, 0) })
let t2 = tween(right_node).to(1, { position: new Vec3(375, 0, 0) })
怎么让这2个不同Node的tween按顺序执行?
我试了 t1.then(t2).start()不行, sequence
parallel
也不行,该怎么弄?求解答
如果还有let t3= tween(top_node).to(1, { position: new Vec3(0, 100, 0) })
如果t1,t2同时执行,执行完成后,再执行t3,有没有更优雅的方法?