Godot 3D Essentials (4.x)
Assemble a working 3D scene: transforms, camera, lights, environment/post, materials, and
GridMap blockouts. Targets Godot 4.7.
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
- 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).
- 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.
- Light the scene. A
DirectionalLight3D is the sun; OmniLight3D/SpotLight3D are
local. Enable shadows per light. Without lights and ambient, surfaces render black.
- Add a
WorldEnvironment with an Environment resource: background (sky/color),
ambient light, tonemap, and post (glow, SSAO, fog, adjustments).
- Give meshes materials (
StandardMaterial3D or a ShaderMaterial) on
MeshInstance3D.
- Block out levels with
GridMap, which places MeshLibrary items on a 3D grid
(the 3D analog of a tilemap).
Patterns
1. A follow camera (third-person, smoothed)
extends Camera3D
@export var target: Node3D
@export var offset := Vector3(0, 4, 8)
@export var smooth := 6.0
func _physics_process(delta: float) -> void:
if target == null:
return
var desired := target.global_position + offset
global_position = global_position.lerp(desired, smooth * delta) # smooth follow
look_at(target.global_position, Vector3.UP) # face the target
2. Sun + environment in code
func _ready() -> void:
var sun := DirectionalLight3D.new()
sun.rotation_degrees = Vector3(-45, -30, 0)
sun.shadow_enabled = true
add_child(sun)
var we := WorldEnvironment.new()
var env := Environment.new()
env.background_mode = Environment.BG_SKY
env.sky = Sky.new()
env.sky.sky_material = ProceduralSkyMaterial.new()
env.ambient_light_source = Environment.AMBIENT_SOURCE_SKY
env.tonemap_mode = Environment.TONE_MAPPER_FILMIC
env.glow_enabled = true
we.environment = env
add_child(we)
3. Assign a StandardMaterial3D from code
func tint_mesh(mesh: MeshInstance3D, color: Color) -> void:
var mat := StandardMaterial3D.new()
mat.albedo_color = color
mat.metallic = 0.0
mat.roughness = 0.6
mat.emission_enabled = true
mat.emission = color * 0.3
mesh.material_override = mat # overrides the mesh's surface materials
4. Place tiles into a GridMap
@onready var grid: GridMap = $GridMap # cell_size + mesh_library set in the editor
func build_floor(width: int, depth: int, item_id: int) -> void:
for x in width:
for z in depth:
# set_cell_item(Vector3i cell, int item, orientation = 0)
grid.set_cell_item(Vector3i(x, 0, z), item_id)
Pitfalls
- Scene renders black → no lights and no ambient. Add a
DirectionalLight3D and/or a
WorldEnvironment with ambient/sky. New scenes have neither by default.
- No camera / wrong camera. If nothing shows, no
Camera3D is current. Set
current = true or make_current(); only one camera renders per viewport.
- Confusing local vs global transforms.
position/rotation are relative to the
parent; global_position/global_transform are world space. Mixing them under a rotated
parent gives surprising results. look_at uses global coordinates.
- Scaling physics/lights. Non-uniform
scale on a Node3D distorts child collisions
and lights; prefer scaling the mesh asset or using uniform scale.
- Forgetting
from/up in look_at. look_at(target, up) — a target equal to the
node's position, or an up parallel to the look direction, produces NaNs/flips.
- GridMap with no
MeshLibrary places nothing. Create a MeshLibrary (from scenes)
and assign it; set_cell_item(cell, -1) clears a cell.
- HDR/glow too strong → check
tonemap_mode and glow thresholds; raw emissive values
bloom hard under filmic tonemapping.
References
- For Transform3D math, camera projection modes, light/shadow params, the full
Environment/post-processing options,
MeshLibrary creation, and ReflectionProbe/
LightmapGI lighting, read references/scene-and-environment.md.
Related skills
godot-physics — 3D bodies, areas, and raycasts.
godot-shaders — spatial shaders for custom 3D surfaces.
godot-animation — AnimationTree for 3D characters.
camera-systems — third-person orbit / first-person look rigs, framing, and collision.
performance-optimization — keep 3D scenes within frame budget (draw calls, lights, LOD).
fps-shooter — composes 3D movement, input, and AI into a game.
1---2name: godot-3d-essentials3description: Set up a Godot 4.7 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.4---5
6# Godot 3D Essentials (4.x)
7
8Assemble a working 3D scene: transforms, camera, lights, environment/post, materials, and
9`GridMap` blockouts. Targets **Godot 4.7**.
10
11## When to use
12
13- Use when starting or fixing a 3D scene: positioning a `Camera3D`, adding lights, setting
14 up a `WorldEnvironment` (sky, ambient, tonemap, glow/SSAO), assigning materials, or
15 building levels with `GridMap`.
16
17**When *not* to use:** writing spatial shaders → `godot-shaders`; 3D physics bodies and
18raycasts → `godot-physics`; character animation blending → `godot-animation`; full FPS
19template → the `fps-shooter` genre skill.
20
21## Core workflow
22
231. **Everything 3D is a `Node3D`** with a `Transform3D` (position, rotation basis, scale).
24 Move with `global_position`, rotate with `rotate_y(angle)` or `look_at(target)`.
252. **Add a `Camera3D`.** Mark it `current` (or call `make_current()`); set `fov`, `near`,
26 `far`. Parent it to a rig/pivot for orbit or follow cameras.
273. **Light the scene.** A `DirectionalLight3D` is the sun; `OmniLight3D`/`SpotLight3D` are
28 local. Enable shadows per light. Without lights and ambient, surfaces render black.
294. **Add a `WorldEnvironment`** with an `Environment` resource: background (sky/color),
30 ambient light, tonemap, and post (glow, SSAO, fog, adjustments).
315. **Give meshes materials** (`StandardMaterial3D` or a `ShaderMaterial`) on
32 `MeshInstance3D`.
336. **Block out levels with `GridMap`**, which places `MeshLibrary` items on a 3D grid
34 (the 3D analog of a tilemap).
35
36## Patterns
37
38### 1. A follow camera (third-person, smoothed)
39
40```gdscript
41extends Camera3D
42
43@export var target: Node3D
44@export var offset := Vector3(0, 4, 8)
45@export var smooth := 6.0
46
47func _physics_process(delta: float) -> void:
48 if target == null:
49 return
50 var desired := target.global_position + offset
51 global_position = global_position.lerp(desired, smooth * delta) # smooth follow
52 look_at(target.global_position, Vector3.UP) # face the target
53```
54
55### 2. Sun + environment in code
56
57```gdscript
58func _ready() -> void:
59 var sun := DirectionalLight3D.new()
60 sun.rotation_degrees = Vector3(-45, -30, 0)
61 sun.shadow_enabled = true
62 add_child(sun)
63
64 var we := WorldEnvironment.new()
65 var env := Environment.new()
66 env.background_mode = Environment.BG_SKY
67 env.sky = Sky.new()
68 env.sky.sky_material = ProceduralSkyMaterial.new()
69 env.ambient_light_source = Environment.AMBIENT_SOURCE_SKY
70 env.tonemap_mode = Environment.TONE_MAPPER_FILMIC
71 env.glow_enabled = true
72 we.environment = env
73 add_child(we)
74```
75
76### 3. Assign a StandardMaterial3D from code
77
78```gdscript
79func tint_mesh(mesh: MeshInstance3D, color: Color) -> void:
80 var mat := StandardMaterial3D.new()
81 mat.albedo_color = color
82 mat.metallic = 0.0
83 mat.roughness = 0.6
84 mat.emission_enabled = true
85 mat.emission = color * 0.3
86 mesh.material_override = mat # overrides the mesh's surface materials
87```
88
89### 4. Place tiles into a GridMap
90
91```gdscript
92@onready var grid: GridMap = $GridMap # cell_size + mesh_library set in the editor
93
94func build_floor(width: int, depth: int, item_id: int) -> void:
95 for x in width:
96 for z in depth:
97 # set_cell_item(Vector3i cell, int item, orientation = 0)
98 grid.set_cell_item(Vector3i(x, 0, z), item_id)
99```
100
101## Pitfalls
102
103- **Scene renders black** → no lights and no ambient. Add a `DirectionalLight3D` and/or a
104 `WorldEnvironment` with ambient/sky. New scenes have neither by default.
105- **No camera / wrong camera.** If nothing shows, no `Camera3D` is `current`. Set
106 `current = true` or `make_current()`; only one camera renders per viewport.
107- **Confusing local vs global transforms.** `position`/`rotation` are relative to the
108 parent; `global_position`/`global_transform` are world space. Mixing them under a rotated
109 parent gives surprising results. `look_at` uses global coordinates.
110- **Scaling physics/lights.** Non-uniform `scale` on a `Node3D` distorts child collisions
111 and lights; prefer scaling the mesh asset or using uniform scale.
112- **Forgetting `from`/`up` in `look_at`.** `look_at(target, up)` — a target equal to the
113 node's position, or an `up` parallel to the look direction, produces NaNs/flips.
114- **GridMap with no `MeshLibrary`** places nothing. Create a `MeshLibrary` (from scenes)
115 and assign it; `set_cell_item(cell, -1)` clears a cell.
116- **HDR/glow too strong** → check `tonemap_mode` and glow thresholds; raw emissive values
117 bloom hard under filmic tonemapping.
118
119## References
120
121- For Transform3D math, camera projection modes, light/shadow params, the full
122 Environment/post-processing options, `MeshLibrary` creation, and `ReflectionProbe`/
123 `LightmapGI` lighting, read `references/scene-and-environment.md`.
124
125## Related skills
126
127- `godot-physics` — 3D bodies, areas, and raycasts.
128- `godot-shaders` — spatial shaders for custom 3D surfaces.
129- `godot-animation` — `AnimationTree` for 3D characters.
130- `camera-systems` — third-person orbit / first-person look rigs, framing, and collision.
131- `performance-optimization` — keep 3D scenes within frame budget (draw calls, lights, LOD).
132- `fps-shooter` — composes 3D movement, input, and AI into a game.