cocos2d-x上的Windows phone 8端口

时间:2014-06-12 10:45:23

标签: windows-phone-8 cocos2d-x

我在cocos2dx上将Android游戏移植到Windows Phone 8时遇到了问题。我所有人都有以下问题

The BG music continues to play when I press WINDOWS button. 
It pauses when i press the button but after 5-10 seconds starts to play again

提前感谢您的任何帮助。 Aqeel Raza

1 个答案:

答案 0 :(得分:3)

转到cocos2dRenderer.cpp 找到Disconnect()方法。 在方法

中写下这一行
mApp->applicationDidEnterBackground();

并类似地在CreateGLResources()中调用以下行;功能

//应该是applicationWillEnterForeground()

mApp->applicationWillEnterForeground();

希望这能解决您的问题。 祝你好运。