Cocos 3D V1.1.1 tween parallel 问题

为啥这样没反应
想把x跟y拆开
有什么办法

tween(this.node)
            .parallel(
                tween().by(1, { position: new Vec3(1, 0, 0) }, { easing: 'linear' }),
                tween().by(1, { position: new Vec3(0, 1, 0) }, { easing: 'linear' })
            )
            .start();