What problem does it solve? Hand-written .tscn scene files are fragile for AI-generated Godot projects, with frequent errors in load_steps, quoting, and parent paths. This Skill provides patterns for building scenes in GDScript code instead, producing reliable node hierarchies for players, enemies, bullets, UI, timers, and cameras. ## Core Features & Use Cases - Programmatic Scene Building: Construct CharacterBody2D, Area2D, CanvasLayer UI, Timer, and Camera2D nodes entirely in _ready() with collision layers, shapes, and visuals. - Minimal .tscn Templates: Use 5-line root scenes that only attach a builder script, plus rules for prefab .tscn files when reuse justifies them. - Hierarchy Patterns: Ready-made node tree layouts for top-down games, platformers, and menu screens. - Use Case: When generating a new Godot 4 game, apply these patterns to create the main scene, player, enemy spawner, and HUD in GDScript without touching error-prone .tscn text. ## Quick Start Ask the AI to create a Godot 4 main scene with a player, enemy spawner, and score UI built programmatically in GDScript.