【发布时间】:2013-07-23 20:59:00
【问题描述】:
有人告诉我,我在玩游戏时接到来电时如何在windows phone 8中获得控制权??
有来电时要触发的功能吗?
请有人帮忙解决这个问题?
【问题讨论】:
标签: windows-phone-8
有人告诉我,我在玩游戏时接到来电时如何在windows phone 8中获得控制权??
有来电时要触发的功能吗?
请有人帮忙解决这个问题?
【问题讨论】:
标签: windows-phone-8
如果有人遇到同样的问题,如果您使用 Unity Engine,以下将是解决方案。
//For interrupt handling
private bool isGameInterrupted;
void OnApplicationPause(bool isInterrupted)
{
if( !isGameInterrupted && isInterrupted )
{
isGameInterrupted = true;
}
if( isGameInterrupted )
{
// Call your pause screen here //
isGameInterrupted = false;
}
}
【讨论】: