- Godot 4 'signal already connected' — why it happens and how to fix it
Your Godot 4 script throws "Signal is already connected" at runtime. Here are the 4 real causes — reconnecting on scene reload, connect inside a loop, shared targets with multiple instances, and wrong disconnect patterns — each with the exact fix.
- 5 Godot 4 sprite shader effects you can build in one script
Dissolve, outline, hit-flash, freeze, and hologram — five Godot 4 canvas_item shader effects with copy-paste GDScript and .gdshader code for each.
- How to add motion trails and afterimages in Godot 4
A step-by-step Godot 4 tutorial for motion trails and dash afterimages — a sprite-snapshot scene, a configurable trail emitter, and tips for making them look great during fast movement.
- What I learned building a save-slot menu in Godot 4
Lessons from building a multi-slot save menu in Godot 4 — thumbnail screenshots, corrupt-slot handling, the "new game" vs "continue" trap, and why a single save file always turns into three slots eventually.
- Godot 4 GPUParticles2D not showing? 5 reasons your particles aren't appearing
Your Godot 4 GPUParticles2D is in the scene but nothing shows up. Here are the 5 real causes — missing process material, culled visibility rect, one_shot traps, lifetime too short, and emitting left false — each with the exact fix.
- Object pooling vs instantiate in Godot 4 — when it actually matters
A practical Godot 4 comparison of object pooling and plain instantiate() — what each really costs, the frame-time numbers that decide it, and a small pool you can paste into a bullet-heaven or wave-based game.
- How to make floating damage numbers in Godot 4 (pooled, no lag)
A step-by-step Godot 4 tutorial for floating combat damage numbers — a reusable Label scene, a pooled spawner that never allocates on the hot path, and juice like crits and knockback-aware offsets.
- Godot 4 Area2D not detecting hits? 6 reasons area_entered isn't firing
Your Godot 4 Area2D won't detect collisions and area_entered never fires. Here are the 6 real causes — monitoring flags, layers vs masks, missing shapes, and the overlap-on-activate trap — each with the fix.
- 6 Godot 4 game feel tricks (each just a few lines of GDScript)
Squash-and-stretch, sprite flash, damage numbers, knockback, slow-motion and a camera punch — six drop-in Godot 4 game feel techniques with copy-paste GDScript.
- Tween vs AnimationPlayer in Godot 4 — which to use and when
Tween and AnimationPlayer both animate values in Godot 4, but they solve different problems. Here's a clear comparison table, real code for each, and a verdict so you pick the right tool the first time.
- Godot 4 hitbox and hurtbox the easy way (damage, teams, i-frames, knockback)
How to build a clean hitbox/hurtbox system in Godot 4 with Area2D — collision layers and masks explained, plus damage, teams to stop friendly fire, invincibility frames and knockback, with copy-paste code.
- Fixing Godot 4 save-file load errors: JSON parse error, null instance, and missing files
The three save/load errors that break Godot 4 games — JSON parse error at end of file, attempt to call on a null instance, and file not found — with the cause and the exact fix for each.
- 5 Godot 4 scene transition effects (and how to build each one)
Fade, iris wipe, pixelate, slide, and dissolve — five working Godot 4 scene transition techniques with GDScript code you can drop in today.
- How to save and load your game in Godot 4 (the honest way)
A complete, working save/load system in Godot 4 using FileAccess and JSON — plus the four production problems nobody warns you about.
- Godot 4 screen shake and hit-stop in one script
Add punchy screen shake and hit-stop (freeze frames) to your Godot 4 game with a small, reusable Camera2D script — with tunable code you can paste in today.