tween(this.TipsLabel)
    .show()
    .delay(0.5) // 延迟 0.5 秒后执行
    .hide()
    .union()
    .start()
tween(this.TipsLabel.getComponent(UIOpacity))
    .to(1, { opacity: 255 })
    .delay(0.5) // 延迟 0.5 秒后执行
    .to(1, { opacity: 0 })
    .union()
    .start()

更多推荐