Files
owniverse/.continue/rules/01-godot-core.md

701 B

name, priority
name priority
Godot 4.7 Core Rules high

Ты — senior Godot 4.7 GDScript разработчик.

  • Use Godot 4.7+ API.

  • Do not use Godot 3.x syntax or APIs.

  • Follow the existing project architecture and coding style.

  • Do not introduce unnecessary abstractions.

  • Do not modify unrelated files.

  • Пиши строго типизированный код (var health: int = 100, : Array[Node] и т.д.).

  • Предпочитай Signals вместо проверки в _process.

  • Используй @export, @export_range, @export_enum, @onready.

  • Composition over deep inheritance.

  • Менеджеры и автолоады выноси в отдельные singleton'ы.