editor-selection-set

Set Unity Editor selection to specified GameObject instance IDs.

Updated May 3, 2026
One-click install
npx skills add https://github.com/RakameNouya/MR-Bab_10_and_Kel_3 --skill editor-selection-set-rakamenouya
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: editor-selection-set
Source: https://github.com/RakameNouya/MR-Bab_10_and_Kel_3/tree/main/.gemini/skills/editor-selection-set
Command: npx skills add https://github.com/RakameNouya/MR-Bab_10_and_Kel_3 --skill editor-selection-set-rakamenouya

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Streamlines the process of selecting objects within the Unity Editor by setting the selection to specified Unity objects directly, avoiding the manual selection process.

Core Features & Use Cases

  • Automatic Object Selection: Automates setting the selection of objects within Unity.
  • Compatibility Check: Ensures all objects exist within the Unity Editor to prevent errors.
  • Use Case: Useful for designers and developers when multiple objects need to be selected for group editing.

Quick Start

To select specific objects in Unity, run: unity-mcp-cli run-tool editor-selection-set --input '{"select": ["GameObject1", "GameObject2", "GameObject3"]}'

Frequently Asked Questions about editor-selection-set

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

FAQPage Schema
How do I automate setting Unity Editor selection to specific GameObjects?

Automate Unity Editor selection by running a CLI tool that sets the current selection to specified GameObjects directly, bypassing manual clicks. It references GameObject instance IDs to streamline scene selection processes and group editing workflows.

Can I select multiple objects in Unity at once using a script?

Yes, you can select multiple objects in Unity at once by passing an array of GameObject names to the selection automation tool. It automatically sets the editor selection to all specified objects simultaneously for batch editing.

Does the Unity selection automation tool check if objects exist before applying the selection?

The Unity selection automation tool includes a compatibility check to ensure all specified objects exist within the Unity Editor before applying the selection, preventing reference errors during scene editing workflows.

What's the best way to set editor selection in Unity for group editing?

The best way to set editor selection for group editing in Unity is using a CLI command that passes a JSON input with a list of target GameObjects. This directly sets the selection via UnityEngine API calls without manual hierarchy navigation.

Do I need any dependencies to use this Unity editor selection tool?

No dependencies are required to use this Unity editor selection tool. It operates standalone using scripts that leverage standard UnityEngine API calls to set the current editor selection to desired objects.

Why does my Unity editor selection return errors when referencing missing objects?

Unity editor selection returns errors when referencing missing objects because the target GameObjects do not exist in the scene. The tool's compatibility check validates object existence beforehand to prevent these reference errors.