触摸时显示 CCLabel 几秒钟

Show CCLabel for few seconds on touch

我是 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;

有人可以帮助我吗?

3秒后,1秒后淡出

scoreLabel.RunActions(new CCDelayTime(3), new CCFadeOut(1));