hytale-spawning-entities

Spawn visible model-based entities in Hytale using the Entity Component System.

13|Updated Feb 14, 2026
One-click install
npx skills add https://github.com/JBurlison/Hytale-Mod-Agent --skill hytale-spawning-entities
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hytale-spawning-entities
Source: https://github.com/JBurlison/Hytale-Mod-Agent/tree/main/.github/skills/hytale-spawning-entities
Command: npx skills add https://github.com/JBurlison/Hytale-Mod-Agent --skill hytale-spawning-entities

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill simplifies the complex process of spawning visible, model-based entities within Hytale, ensuring they are correctly placed, rendered, and persist across game saves.

Core Features & Use Cases

  • Entity Creation: Assembles entities with all necessary components (transform, model, collision, network).
  • Persistence Handling: Implements mechanisms for entities to be saved and loaded correctly.
  • Use Case: You need to place a custom decorative model, like a unique statue or a functional item like a minecart, into the game world at a specific location. This skill provides the exact steps to achieve that.

Quick Start

Use the hytale-spawning-entities skill to spawn a 'Minecart' entity at world coordinates (100, 65, 200).

Frequently Asked Questions about hytale-spawning-entities

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

FAQPage Schema
How do I spawn visible model-based entities in Hytale?

Entity spawning in Hytale requires assembling entity holders, adding necessary components like transform and network, and executing on the world thread via the EntityModule.

How does entity persistence work when spawning custom models in Hytale?

Entity persistence in Hytale relies on implementing specific strategies for NetworkId, ensuring that spawned model-based entities are correctly saved and loaded across game sessions.

What components do I need to add when creating a custom entity in Hytale?

Creating a custom entity requires adding multiple components to the entity holder, including transform, model, collision, and network components, to ensure proper placement and rendering.

Does spawning entities in Hytale require world thread execution?

Yes, spawning entities in Hytale requires world thread execution to properly assemble the entity holder and integrate it into the game world using the EntityModule.

Can I use the EntityModule to place functional items like a minecart in Hytale?

Yes, you can use the EntityModule to spawn functional items like a minecart by assembling the entity with the required components and specifying exact world coordinates for placement.

What is the best way to manage the ECS lifecycle for custom decorative models in Hytale?

Managing the ECS lifecycle involves using Hytale's EntityModule and BlockModule to handle entity holder assembly, component addition, and persistence strategies for NetworkId.