cocos creator 3.8显示与隐藏的效果
·
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()
更多推荐

所有评论(0)