godot-4
Installation
SKILL.md
Godot 4 Development Skill
Expert guidance for Godot 4 game development using GDScript 2.0, scene composition, physics systems, and performance optimization.
GDScript 2.0 Typed Syntax
Always use static typing for performance and IDE support.
BAD: Untyped variables and functions
var health = 100
var player
var enemies = []
func take_damage(amount):
health -= amount
return health <= 0