godot-3d-essentials
Set up a Godot 4.x 3D scene: Node3D transforms, Camera3D, lighting (DirectionalLight3D/OmniLight3D), WorldEnvironment for sky/ambient/tonemap/post, MeshInstance3D materials, and GridMap for tile-based 3D levels. Use when building a 3D scene in a Godot project, placing cameras/lights, configuring environment and post-processing, or working with Node3D/.tscn 3D content and GridMap.
npx skills add gamedev-skills/awesome-gamedev-agent-skills --skill godot-3d-essentials --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Godot 3D Essentials (4.x) Assemble a working 3D scene: transforms, camera, lights, environment/post, materials, and `GridMap` blockouts. Targets **Godot 4.3+**. ## When to use - Use when starting or fixing a 3D scene: positioning a `Camera3D`, adding lights, setting up a `WorldEnvironment` (sky, ambient, tonemap, glow/SSAO), assigning materials, or building levels with `GridMap`. **When *not* to use:** writing spatial shaders → `godot-shaders`; 3D physics bodies and raycasts → `godot-physics`; character animation blending → `godot-animation`; full FPS template → the `fps-shooter` genre skill. ## Core workflow 1. **Everything 3D is a `Node3D`** with a `Transform3D` (position, rotation basis, scale). Move with `global_position`, rotate with `rotate_y(angle)` or `look_at(target)`. 2. **Add a `Camera3D`.** Mark it `current` (or call `make_current()`); set `fov`, `near`, `far`. Parent it to a rig/pivot for orbit or follow cameras. 3. **Light the scene.** A `DirectionalLight3D` is the sun; `OmniLight3D`/`SpotLight3D` are local. Enable shadows per light. Without lights and ambient, surfaces render black. 4. **Add a `WorldEnvironment`** with an `Environment` resource: background (sky/col
- When to use
- Core workflow
- Patterns
- 1. A follow camera (third-person, smoothed)
- 2. Sun + environment in code
- 3. Assign a StandardMaterial3D from code
- 4. Place tiles into a GridMap
- Pitfalls
- References
- Related skills
What does the godot-3d-essentials skill do?
Set up a Godot 4.x 3D scene: Node3D transforms, Camera3D, lighting (DirectionalLight3D/OmniLight3D), WorldEnvironment for sky/ambient/tonemap/post, MeshInstance3D materials, and GridMap for tile-based 3D levels. Use when building a 3D scene in a Godot project, placing cameras/lights, configuring environment and post-processing, or working with Node3D/.tscn 3D content and GridMap.
How do I install it?
Run `npx skills add gamedev-skills/awesome-gamedev-agent-skills --skill godot-3d-essentials --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From gamedev-skills/awesome-gamedev-agent-skills, a repository with 406 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
