update: 清除 FB 的暂停回调

Signed-off-by: huyufei <yufei.hu@castbox.fm>
胡宇飞 2024-09-06 10:49:31 +08:00
parent 69cf28f766
commit cb929ef187
1 changed files with 2 additions and 2 deletions

View File

@ -40,12 +40,12 @@ namespace Guru
if (!isGameShown)
{
// Pause the game - we will need to hide
Time.timeScale = 0;
// Time.timeScale = 0;
}
else
{
// Resume the game - we're getting focus again
Time.timeScale = 1;
// Time.timeScale = 1;
}
}