godot-dev
Installation
SKILL.md
Godot 代码实现规范
本 Skill 提供 GDScript 代码实现的规范和最佳实践,确保代码符合 Godot 引擎特性和 TDD 友好原则。
适用场景
- 编写新的功能代码
- 重构现有代码
- 遵循 GDScript 风格规范
- 使用 Godot 特有功能
GDScript 风格规则
类型注解
# 函数参数和返回值(强制)
func move_to(target: Vector2) -> void:
...
Related skills
More from chen19007/my_skills
godot-verify
|
22godot-tdd
Godot TDD(测试驱动开发)流程总控,协调 godot-design、godot-dev、godot-test、godot-verify 完成开发闭环。
2godot-tdd-full
Complete TDD workflow for Godot projects. Integrates interface design, GUT testing, code implementation, and verification tools.
2godot-web-e2e
End-to-end testing for any Godot Web export using Chrome DevTools and a local HTTP server. Use when verifying gameplay behavior in a Web build (not editor) and you need repeatable DevTools-driven input checks and console evidence.
2godot-test
|
2godot-design
Godot GDScript 接口设计规范与指导,强调 TDD 友好、可测试、可维护的设计原则。
2