unity-manual-component

Guides manual component add, configure, reorder, and copy operations in the Unity Editor Inspector.

1.7k|162|Updated Jan 18, 2026
One-click install
npx skills add https://github.com/Besty0728/Unity-Skills --skill unity-manual-component
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-manual-component
Source: https://github.com/Besty0728/Unity-Skills/tree/main/SkillsForUnity/unity-skills~/skills/manual-component
Command: npx skills add https://github.com/Besty0728/Unity-Skills --skill unity-manual-component

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

When a Unity task only takes a few clicks, spinning up REST automation is overkill. This Skill provides step-by-step guidance for performing one-off component operations directly in the Unity Editor UI, and helps decide when manual work is faster than automation.

Core Features & Use Cases

  • Add Components: Walk through selecting a GameObject, opening Add Component, and choosing components via search or the Component menu.
  • Configure and Reorder: Edit exposed Inspector fields, drag component headers to reorder, and copy or paste component values between GameObjects.
  • Manual vs Automation Decision: Use the 3-clicks-or-fewer rule to decide between manual guidance and the REST-based component module for batch operations.
  • Use Case: A user wants to add a Rigidbody to a single GameObject and tweak its mass. The Skill guides them through Add Component > Physics > Rigidbody and editing the field in the Inspector, without any scripting.

Quick Start

Ask the assistant to walk you through adding a Rigidbody component to your selected GameObject in the Unity Editor.

Frequently Asked Questions about unity-manual-component

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

FAQPage Schema
How do I add a component to a GameObject in Unity?

Select the GameObject in the Hierarchy or Scene view, click Add Component at the bottom of the Inspector, then search for the component name or browse the category list. You can also use the Component menu, such as Component > Physics > Rigidbody.

How do I copy component values between GameObjects in Unity?

Click the gear icon on the source component header and choose Copy Component. Then select the target GameObject, open the gear menu on the matching component, and choose Paste Component Values, or Paste Component As New to add it entirely.

When should I automate component changes instead of doing them manually?

Manual steps are best when the task takes three clicks or fewer, like adding one component or tweaking a few fields. Automate with the REST component module when adding components to many objects, batch-configuring serialized fields, or toggling many components at once.

Can I reorder the Transform component in the Unity Inspector?

No, the Transform component is always first and cannot be moved. Other components can be reordered by dragging their grey header bars in the Inspector until a blue drop line appears.

Why does the Inspector field name differ from the serialized property name?

The Inspector shows a human-readable label rather than the exact serialized property name used in scripts. Hover over a field label to see its tooltip, and use reflection or the REST module when you need exact property names for automation.