Fixed idleExp not working on android

Fixed idleExp only working through unity editor, now works on
application built to an android device through OnApplicationFocus()
This commit is contained in:
Shaun Reed 2017-09-04 14:56:21 -04:00
parent 0bae48932e
commit a04e1e1225
1 changed files with 18 additions and 3 deletions

View File

@ -28,6 +28,8 @@ public class GameManager : MonoBehaviour {
}
void OnEnable()
{
Load();
@ -38,6 +40,20 @@ public class GameManager : MonoBehaviour {
Save();
}
void OnApplicationFocus(bool pauseStatus)
{
if (pauseStatus)
{
//your app is NO LONGER in the background
Load();
}
else
{
//your app is now in the background
Save();
}
}
void OnApplicationQuit()
{
Save();
@ -62,7 +78,7 @@ public class GameManager : MonoBehaviour {
data.speed = currentSpeed;
data.increment = currentIncrement;
data.rotationsPerSec = rotationPerSec;
data.currentTime = DateTime.Now;
data.currentTime = System.DateTime.Now;
bf.Serialize(file, data);
file.Close();
@ -85,9 +101,8 @@ public class GameManager : MonoBehaviour {
GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentExp = data.experience;
GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentRequirement = data.requirement;
DateTime loadTime = DateTime.Now;
DateTime loadTime = System.DateTime.Now;
int secondsPassed = GetIdleTime(data.currentTime, loadTime);
float radianSpeed = GameObject.FindGameObjectWithTag("Player").GetComponent<SpinningCube>().currentSpeed * Mathf.Deg2Rad;
float idleExp = (data.rotationsPerSec * secondsPassed) * data.increment;
GameObject.FindGameObjectWithTag("ExpGained").GetComponent<ExperienceBar>().currentExp += idleExp;