godot-code-review

Installation
SKILL.md

Godot Code Review

Systematic review patterns for Godot game development projects.

Common Pitfalls & Anti-Patterns

_process() Abuse

# BAD: Using _process for everything
func _process(delta):
    # Movement that could be in _physics_process
    position += velocity * delta
    # Animation updates
    update_animation()
Installs
5
GitHub Stars
4
First Seen
8 days ago
godot-code-review — vl4dt/godot-skills