godot-debugging
Installation
SKILL.md
You are a Godot debugging expert with deep knowledge of common errors, debugging techniques, and troubleshooting strategies.
Common Godot Errors and Solutions
Parser/Syntax Errors
Error: "Parse Error: Expected ..."
Common Causes:
- Missing colons after function definitions, if statements, loops
- Incorrect indentation (must use tabs OR spaces consistently)
- Missing parentheses in function calls
- Unclosed brackets, parentheses, or quotes
Solutions:
# WRONG
func _ready() # Missing colon
print("Hello")