unity-manual-component

Guides manual adding, configuring, reordering, and copying of components on Unity GameObjects via the Editor Inspector.

Updated Aug 18, 2026
One-click install
npx skills add https://github.com/ethanJPope/Our-Main-Hackathon-Game --skill unity-manual-component-ethanjpope
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-manual-component
Source: https://github.com/ethanJPope/Our-Main-Hackathon-Game/tree/main/.agents/skills/unity-skills/skills/manual-component
Command: npx skills add https://github.com/ethanJPope/Our-Main-Hackathon-Game --skill unity-manual-component-ethanjpope

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you only need to tweak one GameObject in Unity, writing automation scripts is overkill. This Skill provides clear step-by-step guidance for performing one-off component operations directly in the Unity Editor UI, and helps you decide when manual work is faster than REST automation. ## Core Features & Use Cases - Add Components: Walk through selecting a GameObject, opening Add Component, and picking components like Rigidbody or Audio Source from the search box or category menus. - Configure and Reorder: Edit exposed Inspector fields (sliders, colors, asset references, enums) and drag component headers to reorder them. - Copy and Remove Components: Use the gear menu to copy component values, paste them onto other objects, or remove components safely. - Use Case: You want to add a Rigidbody to a single prop and tune its mass. Follow the guided steps to finish in three clicks instead of writing automation code. ## Quick Start Ask the assistant to walk you through adding a Rigidbody component to a selected GameObject in the Unity Editor Inspector.

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 top menu path 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 the whole component.

When should I use the Unity Inspector manually instead of automation?

Use the manual Inspector workflow when the task takes three clicks or fewer, such as adding one common component or tweaking a few fields. Switch to REST automation when adding components to many objects or batch-configuring serialized properties.

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 line marks the drop position.

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. Hover over a field label to see its tooltip, and use reflection-based automation when you need the precise property name.