unity-manual-component

Guides manual adding, configuring, reordering, and copying of components in the Unity Editor Inspector.

Updated Aug 31, 2026
One-click install
npx skills add https://github.com/pikachu0310/codex-agent-ops-public --skill unity-manual-component-pikachu0310
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-manual-component
Source: https://github.com/pikachu0310/codex-agent-ops-public/tree/main/.agents/skills/unity-skills/skills/manual-component
Command: npx skills add https://github.com/pikachu0310/codex-agent-ops-public --skill unity-manual-component-pikachu0310

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 clear step-by-step guidance for one-off component operations directly in the Unity Editor UI, so users can finish quick Inspector tasks without scripting. ## Core Features & Use Cases - Add Components: Walk through selecting a GameObject, opening Add Component, and picking components via search or the Component menu. - Configure and Reorder: Edit exposed Inspector fields, drag component headers to reorder, and understand Transform ordering constraints. - Copy and Remove Components: Use the gear menu to copy component values, paste them as new components, or remove components safely. - Use Case: A user wants to add a Rigidbody to a single GameObject and tweak its mass. The Skill guides them through the three-click Inspector workflow instead of writing automation code. ## Quick Start Ask how to add a Rigidbody component to a GameObject in the Unity Editor and follow the guided Inspector steps.

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 by 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 use the Unity Editor manually instead of automation?

Guide manually when the task takes three clicks or fewer, such as adding one common component or tweaking a few fields. Automate with the REST component module when adding components to many objects or batch-configuring serialized fields.

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 Unity warn when I remove a component?

Unity warns about missing script references when other systems depend on the component being removed. Check dependent scripts and references before confirming removal through the gear menu's Remove Component option.