我是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;
有人可以帮助我吗?
答案 0 :(得分:2)
3秒后,1秒内淡出
scoreLabel.RunActions(new CCDelayTime(3), new CCFadeOut(1));