Game suddenly doesnt work anymore

so i save my game, build it, upload it.

game works fine.

open the game up in unity a day later and the game wont run.

i made no changes at all after building it. i even deleted ALL objects in the game and made a new camera with some basic movement controls and it wont move.

wtf?

What errors are you getting in the console?

no errors what so ever. i click play, the game opens, but nothing happens. i can hear music playing but nothing moves, not even the mouse.

its as if the game paused after the first frame, but particles and music work…

Are you messing with Time.timeScale somewhere? an easy way to check is in the update function have a line of code like this.

Debug.Log("Time = " + Time.timeScale);

I had a similar issue once where Unity’s time scale was actually set to start at zero when I crashed it in-game in a timescale-changing function. Check your project settings, too, and make sure it’s set to start at non-zero.

aha there it is. timescale changed itself to 0. man. i was panicking there for a while.

it did it again. some sort of bug i guess?