unity-scene

Create, load, save, and inspect Unity scenes with additive loading.

8|1|Updated Oct 7, 2025
One-click install
npx skills add https://github.com/Zzulin/unity-project01 --skill unity-scene-zzulin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-scene
Source: https://github.com/Zzulin/unity-project01/tree/main/URP1/Plugins/Unity-Skills-main/SkillsForUnity/unity-skills~/skills/scene
Command: npx skills add https://github.com/Zzulin/unity-project01 --skill unity-scene-zzulin

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill helps Unity developers manage scenes programmatically, avoiding manual and repetitive editor steps.

Core Features & Use Cases

  • Create new scenes at a given path (scenePath)
  • Load scenes (including additive loading)
  • Save the current or specified scene
  • Retrieve scene information and hierarchy
  • Take screenshots of the current scene

Quick Start

Call scene_create with a path to create a new scene, then use scene_load to open it and scene_get_info to verify its state.

Frequently Asked Questions about unity-scene

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Unity scene creation and loading in my game development workflow?

You can automate Unity scene management by programmatically creating scenes at a specified path and loading them with optional additive flags. This eliminates manual editor steps and streamlines repetitive scene setup tasks across multiple scenes.

What is additive scene loading and when do I need it for Unity gamedev?

Additive scene loading allows you to load multiple Unity scenes simultaneously without unloading the current one. You need it when building large game worlds that require streaming content or managing distinct environment layers dynamically.

Can I retrieve the hierarchy and current status of a Unity scene automatically?

Yes, you can retrieve scene information and traverse the hierarchy automatically. The system returns current scene status and structural details, allowing you to verify scene contents and inspect nested game objects programmatically.

Does automated Unity scene management support capturing scene screenshots?

Yes, automated Unity scene management supports capturing screenshots of the current scene. This feature allows you to visually document scene states during automated workflows without requiring manual viewport interactions.

What is the best way to save multiple Unity scenes without manual editor steps?

The best way to save multiple Unity scenes without manual editor steps is using programmatic scene management. You can trigger save operations on the current or specified scenes directly through code, avoiding repetitive manual saving.

Do I need to define a specific interface to use automated Unity scene management?

Yes, you need to define an interface including scenePath for creation and an additive flag for loading. This structured input allows the automation system to properly execute scene creation, loading, and inspection operations.