如果游戏关闭,则打开pauseLayer(cocos2d iPhone开发)
如何将如果用户位于某个关卡并退出游戏(按下主页按钮),那么下次打开它(多任务处理)时它将打开暂停层,如何将其合并到我的 AppDelegate 中?我不希望他们切换回游戏后立即开始游戏。
How do I incorporate into my AppDelegate that if a user is on a Level and exits the game (pressed home button), then the next time it's opened (multitasking) it will open the pauseLayer? I don't want the game to immediately start after they have switched back to it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
详细一点:
=)
In detail:
=)
在applicationDidEnterBackground中,添加一行代码来检查游戏是否正在运行。如果游戏正在运行,则打开pauseLayer。这样,当玩家从多任务处理中打开它时,游戏将暂停。
inside applicationDidEnterBackground, add a line of code to check whether the game is running. if the game is running, open the pauseLayer. this way when the player open it from multitasking the game will be paused.