uloop control-play-mode
Control Unity Editor play mode (play/stop/pause/step) or query its state without side effects (status).
Usage
uloop control-play-mode [options]
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
--action |
string | Play |
Play - start Play Mode, Stop - stop Play Mode, Pause - pause Play Mode, Step - advance one frame while paused, Status - report current state without changing anything, Resume - alias of Play in every state, including starting Play Mode when stopped |
--timeout-seconds |
integer | 180 |
Maximum seconds to wait for the requested play mode state |
Output
Returns JSON with the current play mode state:
IsPlaying: Whether Unity is currently in play modeIsPaused: Whether play mode is pausedChanged: Whether the requested action changed the current play mode stateWasAlreadyStopped: WhetherStopwas requested while Play Mode was already stoppedResumedFromPause: WhetherPlayresumed a paused Play Mode session instead of starting a new oneMessage: Description of the action performedWarning(string, optional): Set when the action carries a caveat. A freshPlaystart always notes that the session started from Edit-time scene state; additionally, when active hot-reload patches or enabled pause points exist and Domain Reload is enabled, it reports how many of them the Play-entry domain reload will discard. Pause points enabled with--persistare counted separately: they are re-armed after the reload, and the warning points atpause-point-statusfor the re-arm result.Statusalso reports when Play Mode is running while the Unity Editor is unfocused, because progress may be throttled; runuloop focus-window, or use thepause-point --await/--triggerflow instead of polling for progress.StoppedBy(string, optional): Why Play Mode last stopped:cli-control-play-mode,cli-compile-stop-setting,cli-run-tests-cancel,script-compilation, orunknown. Present onStopwhen Play Mode was already stopped, and onStatuswhen Play Mode is not running. Omitted when this Editor session has no confirmed stop.StoppedAt(string, optional): UTC ISO 8601 timestamp of that stop. Omitted together withStoppedBywhen no stop is recorded.
Notes
- Stop on an already-stopped Editor sets
Changed: false,WasAlreadyStopped: true Playon an Editor that is already playing is a no-op: it setsChanged: falseand leaves the current session (its accumulated state, spawned objects, progress) untouched instead of restarting it. If you need a clean state for verification, explicitlyStopthenPlayrather than relying onPlayalone to reset anything.Playwhile Play Mode is paused resumes the same session: it setsChanged: true,ResumedFromPause: true, andMessage: "Play mode resumed"— the session is not restarted.Resumeis an alias ofPlayand behaves identically in every state, including starting Play Mode when stopped.Stepadvances exactly one frame and leaves PlayMode paused (the Editor's Next Frame button); it is independent ofTime.timeScaleand requires PlayMode to be running- The command waits for the requested state before returning. Increase
--timeout-secondsfor projects with slow PlayMode entry. - Before relying on PlayMode behavior as verification evidence, check
uloop get-logs --log-type Errorfor pre-existing errors. An error already present when PlayMode starts can otherwise be mistaken for one caused by the action under test. Statusreads the current state with no side effects:Changedis alwaysfalse, no waiting, no scene saving, and it is never rejected by compile errors. It reports whether compile errors would currently blockPlay(BlockedByCompileErrorswith theCompileErrorslist), read from the last compile result without triggering a new compile. It does not predict unsaved-changes blocking:BlockedByUnsavedChangesdescribes a failed save attempt during aPlayrequest, andStatusnever attempts one.Playfails immediately with aCONTROL_PLAY_MODE_UNSAVED_CHANGESerror when unsaved changes cannot be saved quietly — most commonly an Untitled scene, which has no path to save to. The error message lists exactly which scenes or prefab stages blocked it; save the Untitled scene to an explicit path (or discard the changes), then retry.Playfrom Edit mode triggers a domain reload (unless Enter Play Mode Options disable it), which discards all active hot-reload patches and enabled pause points other than those enabled with--persist, which are re-armed afterwards. The responseWarningreports the counts being dropped and, separately, how many re-arm. Edits that were only hot-reloaded are not part of the compiled assemblies, so the new session runs the last compiled code — runuloop compilebeforePlayto keep them, or re-applyuloop hot-reloadafter Play Mode starts.