gameobject-create

Create a Unity GameObject with name, optional parent, and transform values.

1|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/lightvu25/Echoes --skill gameobject-create-lightvu25
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gameobject-create
Source: https://github.com/lightvu25/Echoes/tree/main/SKILLS/gameobject-create
Command: npx skills add https://github.com/lightvu25/Echoes --skill gameobject-create-lightvu25

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill eliminates repetitive manual steps for adding new GameObjects into Unity scenes or prefabs, saving time and reducing human error.

Core Features & Use Cases

  • Create a new GameObject in the opened Prefab or active Scene with a specified name.
  • Optionally assign a parent GameObject, and set transform values (position, rotation, scale) in world or local space.
  • Use cases include scaffolding scenes, setting up prefabs, or constructing hierarchies for gameplay objects.

Quick Start

Create a new GameObject named 'NewObject' at the root of the active Scene or opened Prefab, with optional position, rotation, and scale.

Frequently Asked Questions about gameobject-create

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

FAQPage Schema
How do I create a new Unity GameObject in a scene or prefab?

To create a Unity GameObject, provide a name and an optional parent to instantiate it in the active Scene or opened Prefab. You can also apply position, rotation, and scale values during creation.

Can I set local and world transform values when creating a Unity GameObject?

Yes, you can set local or world transform values including position, rotation, and scale when creating a Unity GameObject. The skill applies these spatial values to the new object within the active Scene or Prefab.

Does creating a Unity GameObject require an existing parent transform?

No, assigning a parent transform is optional when creating a Unity GameObject. If a parent is provided, the skill validates its existence before creation, otherwise it places the object at the root.

What's the best way to scaffold a scene hierarchy in Unity?

The best way to scaffold a scene hierarchy is automating the creation of GameObjects with predefined names, parents, and transform values. This reduces repetitive manual steps and human error when setting up gameplay objects.

Why does my Unity GameObject fail to instantiate inside a prefab?

Creation fails when required fields are missing or the specified parent does not exist. The skill validates required inputs and checks target parent existence before instantiating the Unity GameObject in the Prefab.

What is GameObject automation for Unity scenes?

GameObject automation is a scripting approach that eliminates repetitive manual steps by creating new Unity objects with specified names, parents, and transforms in scenes or prefabs, reducing human error.