- Home /
How do I start game paused
How do I start game paused? please help
Answer by whydoidoit · Jun 24, 2012 at 10:04 PM
Press the pause button, then press the play button.
If you mean from script:
Application.isPaused = true;
Application.isPlaying = true;
Otherwise you could set Time.timeScale = 0; in some startup code to force the time steps to happen with no apparent increment.
To add onto this, you would want to place this in the Awake function if you wanted the game to begin in a paused state
Answer by Bootsgaloore · Jun 24, 2012 at 10:11 PM
yea from script thanks :)
Hey - when you write a comment, use the hidden Add new comment button (over on the right). On UA Answer means Solution and not Reply (they could just change the words, it would make much more sense as everyone does this at first).
Your comments also do not require moderation, nor do edits to a published question.
Oh and there's one other thing you can do - will update my answer above (just tick it if any of it does what you wanted :)
Your answer
Follow this Question
Related Questions
Unity itch.io WebGL build is showing error 1 Answer
Making a Pause Menu 1 Answer
time freeze (pause game) 2 Answers
Script or plugin for start play here 0 Answers
Making a Game like 'Kitty Cannon'? 1 Answer