|
What code do I need to make my game pause? How do I stop everything?
(comments are locked)
|
|
In the Editor, you can just click the pause button. From gamecode, you can set Time.timeScale to 0. See the help entry. This should pause most of your game, assuming you don't rely on stuff like asking the actual system time. You can also set timeScale to anything between 0 and 1 (and even 1 and up), to modify the speed at which your gamesimulation progresses. will this have any influence on any sounds/music playing if you scale the speed?
Jun 26 '11 at 08:07 PM
BerggreenDK
@BerggreenDK: No, but you can manually reduce the pitch of your music to match the timeScale.
Apr 12 at 06:55 AM
dreasgrech
(comments are locked)
|
|
If you rely on the time to remain active during the pause you can also implement it a following way. If an MonoBehaviour needs a pause action, like e.g. stopping the animation, implement an OnPauseGame() function. To handle resuming, implement an OnResumeGame() function. When the game needs to pause, call the OnPauseGame function on all objects using something like this:
And to resume call OnResumeGame on all objects. A basic script with movement in the Update() could have something like this:
A big benefit of doing it like this is that you can implement object specific pausing and resuming functionality, like storing and restoring information for objects that use physics. Does that really pause the game? Or just send a message to all GameObjects that they should pause, but does not set Time.timeScale or something like it to 0?
Dec 12 '10 at 06:21 PM
fireDude67
(comments are locked)
|
|
If you set Time.timeScale to 0, yet you still want to do some processing (say, for animating pause menus), remember that Time.realtimeSinceStartup is not affected by Time.timeScale. You could effectively set up your own "deltaTime" in your animated menus by subtracting the previous recorded Time.realtimeSinceStartup from the current one. You rock, that saved me so much trouble!
Nov 12 '11 at 12:23 AM
UltimateBrent
(comments are locked)
|
|
If you're in the editor, you also have the option of calling Debug.Break to pause execution. This works just like pressing the pause button and is ignored at runtime, so you could use it to make debug-time "breakpoints". Programmers should note that Debug.Break does not act like a true breakpoint. Execution is not paused on that line, but rather, the game stops after the current frame has finished processing.
Nov 20 '09 at 06:00 PM
Bampf
Yep. Functionality is just like pressing pause.
Nov 23 '09 at 01:01 PM
AngryAnt ♦♦
(comments are locked)
|
|
Setting Time.timeScale to 0.0 works great as you still can have at the same time a Unity GUI on top that is still clickable and the rest of Unity freezes meanwhile. it's a great point that UnityGUI does indeed keep going when timescale is zero. (But it can cut both ways, be careful! :) )
Apr 29 at 09:07 AM
Fattie
(comments are locked)
|
1 2 3 4 next page »
