1

我是 Cocos Sharp 的新手,一直在努力实现问题标题中的行为。我想在用户触摸一些精灵后向用户显示一段时间后会消失或消失的消息,例如 3 秒。但我不知道该怎么做。

我正在展示这样的 CCLabel:

var scoreLabel = new CCLabel("Touch Menu and Exit button together to exit!", "Arial", 50, CCLabelFormat.SystemFont);
scoreLabel.PositionX = button.PositionX;
scoreLabel.PositionY = button.PositionY + 300;
scoreLabel.AnchorPoint = CCPoint.AnchorMiddleRight;

有人能帮我吗?

4

1 回答 1

2

3秒后,1秒后淡出

scoreLabel.RunActions(new CCDelayTime(3), new CCFadeOut(1));
于 2016-12-22T12:12:44.997 回答