tween没有销毁节点的功能吗

 如题,在cc.tween中好像没有直接提供destroy的方法,只有removeSelf

。。只能在call里面手动销毁。不考虑加个destroy方法的吗
cc.tween(item)
.to(
2,
{
x: 0,
y: 0,
angle: 360,
scale: 0.2,
},
{ easing: cc.easing.smooth }
)
.removeSelf()
.start();
this.scheduleOnce(()=>{
console.log(item)
},3)