godot-gridmap-level

Build Godot 3D levels from grid data into baked .tscn scenes.

8|3|Updated Jun 12, 2026
One-click install
npx skills add https://github.com/arthur0n/xenodot-forge --skill godot-gridmap-level
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: godot-gridmap-level
Source: https://github.com/arthur0n/xenodot-forge/tree/main/plugin/skills/godot-gridmap-level
Command: npx skills add https://github.com/arthur0n/xenodot-forge --skill godot-gridmap-level

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill turns hand-authored or drawn level grids into reliable Godot 3D environments, avoiding drifting walls, mismatched colliders, and fragile by-eye placement.

Core Features & Use Cases

  • GridMap level construction: Builds tile-based geometry from a structured grid so walls, doors, windows, and floor elements snap cleanly to cells.
  • MeshLibrary-driven tiles: Uses authored tile scenes and baked collisions so visible meshes and physics stay aligned.
  • Hybrid level assembly: Keeps large structural geometry in GridMap while placing floors, props, navigation, and gameplay nodes through the builder pipeline.
  • Use Case: A level designer provides a drawn JSON grid for a first-person shooter map, and this Skill produces a baked Godot scene with correct scale, collisions, and reusable build steps.

Quick Start

Ask the skill to convert the drawn level JSON into a baked Godot scene using GridMap, matching the brief’s cell size, wall height, props, and verify checks.

Frequently Asked Questions about godot-gridmap-level

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

FAQPage Schema
How do I generate Godot 3D levels from a drawn grid?

You can build Godot 3D levels from drawn grid data by processing structured JSON grids through a builder pipeline. This snaps walls, doors, and props cleanly to GridMap cells while keeping visible meshes and physics colliders structurally aligned.

Why do my GridMap walls and colliders drift when placing tiles by eye?

GridMap walls and colliders drift during by-eye placement due to mismatched tile coordinates and unverified cell scaling. Using a structured grid-to-world contract with MeshLibrary-driven tiles ensures visible meshes and physics stay aligned without fragile manual adjustments.

Can I bake a Godot scene with collision and navigation from a JSON grid?

Yes, you can bake a Godot .tscn scene with collision and navigation from a JSON grid. The pipeline places floors, props, navigation, and gameplay nodes through the builder, verifying used cells, scale, and floor coverage.

Does Godot GridMap level generation support MeshLibrary tile authoring?

Yes, Godot GridMap level generation supports MeshLibrary tile authoring by using authored tile scenes with baked collisions. This ensures visible meshes and physics stay aligned when instancing tiles for walls, windows, and props.

What is the best way to align structural geometry and props in Godot GridMap?

The best way to align structural geometry and props in Godot GridMap is hybrid level assembly. This keeps large structural geometry in GridMap while placing floors, props, and navigation through a builder pipeline to satisfy strict grid-to-world contracts.