AgentSkillsCN

uloop-control-play-mode

通过uloop CLI控制Unity编辑器播放模式。适用场景:(1) 启动播放模式进行测试、(2) 测试结束后停止播放模式、(3) 暂停播放模式进行调试。

SKILL.md
--- frontmatter
name: uloop-control-play-mode
description: "Control Unity Editor play mode. Use when: starting/stopping/pausing play mode, testing game behavior, or when user asks to play or stop. Controls play/stop/pause of Unity Editor."

uloop control-play-mode

Control Unity Editor play mode (play/stop/pause).

Usage

bash
uloop control-play-mode [options]

Parameters

ParameterTypeDefaultDescription
--actionstringPlayAction to perform: Play, Stop, Pause

Examples

bash
# Start play mode
uloop control-play-mode --action Play

# Stop play mode
uloop control-play-mode --action Stop

# Pause play mode
uloop control-play-mode --action Pause

Output

Returns JSON with the current play mode state:

  • IsPlaying: Whether Unity is currently in play mode
  • IsPaused: Whether play mode is paused
  • Message: Description of the action performed

Notes

  • Play action starts the game in the Unity Editor (also resumes from pause)
  • Stop action exits play mode and returns to edit mode
  • Pause action pauses the game while remaining in play mode
  • Useful for automated testing workflows