thedivergentai/godot-master
Consolidated expert library for professional Godot 4.7+ game and application development. Orchestrates 92 Domain Skills through architectural workflows, anti-pattern catalogs, performance budgets, and Server API patterns. Use when: (1) starting a new Godot project, (2) designing game or app architecture, (3) building entity/component systems, (4) debugging performance or physics issues, (5) choosing between 2D/3D approaches, (6) implementing multiplayer, (7) optimizing draw calls or script time, (8) porting between platforms, (9) migrating from 4.6 to 4.7. Primary entry point for ALL Godot development tasks. Keywords: Godot 4.7, AreaLight3D, HDR, Asset Store, godot-master.
npx skills add https://github.com/thedivergentai/GD-Agentic-Skills --skill godot-master
Every section earns its tokens by focusing on Knowledge Delta — the gap between what the base model already knows and what a senior Godot engineer knows from shipping real products.
All Domain Skill references target Godot 4.7+ (stable, 2026-06-18). Key orchestration deltas:
Before writing any system, answer these three questions for EVERY piece of state:
StatsComponent owns health, NOT the CombatSystem)apply_damage())health_changed signal)If you can't answer all three for every state variable, your architecture has a coupling problem. This is not OOP encapsulation — this is Godot-specific because the signal system IS the enforcement mechanism, not access modifiers.
Organize every feature into four layers. Signals travel UP, never down:
┌──────────────────────────────┐
│ PRESENTATION (UI / VFX) │ ← Listens to signals, never owns data
├──────────────────────────────┤
│ LOGIC (State Machines) │ ← Orchestrates transitions, queries data
├──────────────────────────────┤
│ DATA (Resources / .tres) │ ← Single source of truth, serializable
├──────────────────────────────┤
│ INFRASTRUCTURE (Autoloads) │ ← Signal Bus, SaveManager, AudioBus
└──────────────────────────────┘
Critical rule: Presentation MUST NOT modify Data directly. Infrastructure speaks exclusively through signals. If a Label node is calling player.health -= 1, the architecture is broken.
match_started, player_died, settings_changed). Debugging sprawl is the cost — limit events to < 15.CombatBus only for combat nodes). This is the compromise that scales.Expert systems are defined not by their isolation, but by their Payload Synthesis.
PhysicsServer2D and RenderingServer bypass SceneTree node overhead. Use for 1,000+ bullets or particles to achieve O(1) processing.AnimationTree.get_root_motion_position() converts animation displacement into physics velocity, preventing "foot sliding" in complex movement.Resource objects (like Stats) emit signals when modified, allowing UI to update automatically without tight coupling.ResourceLoader async phases) prevents I/O hitches when spawning items or enemies.PackedByteArray for synchronization instead of JSON/Strings to keep packets under 100 bytes.Shooter: strictly use intersect_ray() (direct space state) over RayCast3D nodes for 100x performance.RPG: Damage follows base * pow(scaling, level) to sustain end-game progression.RTS: Moves groups based on their Center of Mass with Relative Offset to preserve formation integrity.Metroidvania: Uses ResourceLoader.load_threaded_request() for seamless room swaps.Platformer: Mandatory Jump Buffering (~0.15s) and Coyote Time for professional feel.Simulation: Tick Manager batch processing; avoid per-entity _process to sustain thousands of units.Romance: Multi-Axial Affection (Attraction, Trust, Comfort) to map complex narrative branching.Architecture: Signal Architecture strictly follows Signal Up, Call Down to eliminate circular scene coupling.| Scenario | Strategy | MANDATORY Skill Chain | Trade-off |
| :--- | :--- | :--- | :--- |
| Rapid Prototype | Event-Driven Mono | READ: Foundations → Autoloads. Do NOT load genre or platform refs. | Fast start, spaghetti risk |
| Complex RPG | Component-Driven | READ: Composition → States → RPG Stats. Do NOT load multiplayer or platform refs. | Heavy setup, infinite scaling |
| Massive Open World | Resource-Streaming | READ: Open World → Save/Load. Also load Performance. | Complex I/O, float precision jitter past 10K units |
| Server-Auth Multi | Deterministic | READ: Server Arch → Multiplayer. Do NOT load single-player genre refs. | High latency, anti-cheat secure |
| Mobile/Web Port | Adaptive-Responsive | READ: UI Containers → Adapt Desk→Mobile → Platform Mobile. | UI complexity, broad reach |
| Application / Tool | App-Composition | READ: App Composition → Theming. Do NOT load game-specific refs. | Different paradigm than games |
| Romance / Dating Sim | Affection Economy | READ: Romance → Dialogue → UI Rich Text. | High UI/Narrative density |
| Secrets / Easter Eggs | Intentional Obfuscation | READ: Secrets → Persistence. | Community engagement, debug risk |
| Collection Quest | Scavenger Logic | READ: Collections → Marker3D Placement. | Player retention, exploration drive |
| Seasonal Event | Runtime Injection | READ: Easter Theming → Material Swapping. | Fast branding, no asset pollution |
| Souls-like Mortality | Risk-Reward Revival | READ: Revival/Corpse Run → Physics 3D. | High tension, player frustration risk |
| Wave-based Action | Combat Pacing Loop | READ: Waves → Combat. | Escalating tension, encounter design |
| Balance / Difficulty / Economy Pacing | Monte Carlo Balance Lab | READ: Resources → Economy → Combat / RPG Stats / Waves (as needed) → Monte Carlo Balancer → Testing → Builder. | Statistical rigor; abstract sim must calibrate vs headless Godot |
| Survival Economy | Harvesting Loop | READ: Harvesting → Inventory. | Resource scarcity, loop persistence |
| Racing / Speedrun | Validation Loop | READ: Time Trials → Input Buffer → Genre Racing. | High precision, ghost record drive |
| Horror / Stealth | Tension Management | READ: Genre Horror → Genre Stealth → Audio. | Atmosphere, player vulnerability |
| Card / Board Game | Rule Enforcement | READ: Genre Card Game → Turn System. | Deterministic state, UI heavy |
| Simulation / RTS | Batch Processing | READ: Genre Simulation → Genre RTS → Performance. | High unit counts, O(1) logic |
| HDR / Cinematic Visuals | Display Pipeline | READ: 3D Lighting → Platform Desktop → Shaders. Enable viewport HDR in Project Settings. | Platform-specific tonemapping tuning |
| Rectangular Area Lights | AreaLight3D | READ: 3D Lighting → 3D Materials. Prefer AreaLight3D over emissive+GI hacks. | Forward+ renderer required for full quality |
| Mobile Touch Controls | Native Joystick | READ: Platform Mobile → Adapt Desk→Mobile. Use built-in virtual joystick (4.7+). | Less plugin dependency |
| Addon / Asset Discovery | Asset Store | READ: Project Foundations → Export Builds. Asset Store replaces Asset Library. | Beta store UI — verify licensing per addon |
One of the most impactful expert-only decisions. The Godot docs explicitly say "avoid using nodes for everything":
| Type | When to Use | Cost | Expert Use Case |
| :--- | :--- | :--- | :--- |
| Object | Custom data structures, manual memory management | Lightest. Must call .free() manually. | Custom spatial hash maps, ECS-like data stores |
| RefCounted | Transient data packets, logic objects that auto-delete | Auto-deleted when no refs remain. | DamageRequest, PathQuery, AbilityEffect — logic packets that don't need the scene tree |
| Resource | Serializable data with Inspector support | Slightly heavier than RefCounted. Handles .tres I/O. | ItemData, EnemyStats, DialogueLine — any data a designer should edit in Inspector |
| Node | Needs _process/_physics_process, needs to live in the scene tree | Heaviest — SceneTree overhead per node. | Only for entities that need per-frame updates or spatial transforms |
The expert pattern: Use RefCounted subclasses for all logic packets and data containers. Reserve Node for things that must exist in the spatial tree. This halves scene tree overhead for complex systems.
*From empty project to production-ready container.*
MANDATORY — READ ENTIRE FILE: Foundations
/features/player/, /features/combat/), not by class type. A player/ folder contains the scene, script, resources, and tests for the player.GlobalSignalBus autoload with < 15 events.untyped_declaration warning in Project Settings → GDScript → Debugging..gitignore, export presets, and input map.create_scene.py, add_node.py, save_scene.py) to generate scene hierarchies programmatically via the Godot CLI.> [!CAUTION] Workflow 1 NEVER List
> - NEVER use res:// paths in logic scripts. Use @export_file or @export_dir to ensure resources remain valid when moved.
> - NEVER initialize children in _init(). The scene tree isn't ready. Use _ready() or @onready.
> - NEVER keep "Default" project settings for Physics Ticks. Set to 60 for consistency, or use Engine.physics_ticks_per_second for adaptive logic.
> - NEVER use print() in _process() for debugging; use the Debugger or push_error() to avoid frame-time spikes.
Do NOT load combat, multiplayer, genre, or platform references during scaffolding.
*Building modular, testable characters.*
MANDATORY Chain — READ ALL: Composition → State Machine → CharacterBody2D or Physics 3D → Animation Tree
Do NOT load UI, Audio, or Save/Load references for entity work.
InputComponent, never handles input directly. This allows AI/Player swap with zero refactoring.MoveState tells MoveComponent to act, not the other way around.> [!CAUTION] Workflow 2 NEVER List
> - NEVER call parent.do_thing(). If the parent changes, the entity breaks. Emit a signal request_action instead.
> - NEVER use _process for movement. Use _physics_process to avoid jitter on variable-refresh-rate monitors.
> - NEVER hardcode animation names. Use a StringName constant or a Resource map to enable easy renaming in AnimationPlayer.
> - NEVER use get_node() with absolute paths. Use %UniqueName to survive tree refactoring.
*Connecting Combat, Inventory, Stats through Resources.*
MANDATORY Chain — READ ALL: Resource Patterns → RPG Stats → Combat → Inventory
ItemData.gd extending Resource. Instantiate it as 100 .tres files instead of 100 scripts.player_health_changed on the Signal Bus.@export Resource variables, or call resource.duplicate() in _ready(). Failure to do this is Bug #1 in Part 8.> [!CAUTION] Workflow 3 NEVER List
> - NEVER pass Node references in a Signal Bus. Objects get freed; RIDs or IDs are safer for long-term tracking.
> - NEVER modify a .tres file at runtime via code (it modifies the disk file). Always .duplicate() before modifying.
> - NEVER use Array for high-frequency search. Use Dictionary with StringName keys for O(1) lookups.
> - NEVER use float for item counts or precise resource tracking; use int and scale for display.
MANDATORY: Autoload Architecture → Save/Load → Scene Management
.get("key", default_value).> [!CAUTION] Workflow 4 NEVER List
> - NEVER save whole Object or Node instances. They contain transient pointers. Extract data into a Dictionary or custom Resource.
> - NEVER use JSON for data that needs strict typing (e.g., Vector2). Use var_to_bytes or ConfigFile for structured Godot types.
> - NEVER block the main thread for auto-saves. Use a Thread or WorkerThreadPool to serialize large dictionaries.
> - NEVER save to res:// in an exported project; strictly use user:// for persistent data.
MANDATORY: Debugging/Profiling → Performance Optimization
Diagnosis-first approach (NEVER optimize blindly):
_process is being called on hundreds of nodes. Move to single-manager pattern or Server APIs (see Part 6).MultiMeshInstance for repetitive geometry. Batch materials with ORM textures._process is used instead of _physics_process for movement.load(), or NavigationServer recalculation. Use ResourceLoader.load_threaded_request().> [!CAUTION] Workflow 5 NEVER List
> - NEVER use get_nodes_in_group() inside _process. It's an O(n) operation every frame. Cache the array in _ready().
> - NEVER use Area2D signals for "Stay" logic. Use get_overlapping_bodies() periodically or a manager-level PhysicsServer check.
> - NEVER optimize before profiling. A 1ms script is irrelevant if you have 2000 draw calls killing the GPU.
> - NEVER use load() in hot paths; strictly preload or use ResourceLoader for async loading.
MANDATORY: Input Handling → Adapt Desktop→Mobile → Platform Mobile
Also read: Platform Desktop, Platform Web, Platform Console, Platform VR as needed.
InputManager autoload that translates all input types into normalized actions. NEVER read Input.is_key_pressed() directly — it blocks controller and touch support.MarginContainer with Safe Area logic for notch/cutout devices.AudioServer requires user interaction before first play (browser policy). Handle this with a "Click to Start" screen.> [!CAUTION] Workflow 6 NEVER List
> - NEVER use OS.get_name() for feature detection. Use OS.has_feature("mobile") or custom feature tags to handle subsets like "SteamDeck."
> - NEVER assume a specific aspect ratio. Always use Expand or Keep Aspect in combinations with Anchor nodes.
> - NEVER use desktop-only shaders (e.g., complex depth sampling) on Mobile/Web without a GLES3/Compatibility secondary path.
> - NEVER ignore physical_keycode for desktop builds; it ensures keyboard layouts (AZERTY/QWERTY) don't break movement.
JavaScriptBridge.eval() — Prevents script injection in web builds. Use a sanitize_js_string() helper.MANDATORY: Procedural Gen → Tilemap Mastery or 3D World Building → Navigation
FastNoiseLite resource with a fixed seed for deterministic generation.NavigationServer3D.parse_source_geometry_data() + NavigationServer3D.bake_from_source_geometry_data_async().WorkerThreadPool. Build the scene chunk off-tree, then add_child.call_deferred() on the main thread.> [!CAUTION] Workflow 7 NEVER List
> - NEVER instantiate nodes for "Background" noise. Use MultiMeshInstance or draw loops in _draw for thousands of small details.
> - NEVER regenerate the entire map for one change. Use a "Dirty Chunk" system to only update what exactly changed.
> - NEVER place collisions on the same frame as mesh generation if using concave_polygon_shape. It stalls the physics thread.
> - NEVER perform pathfinding queries every frame for all units. Use a NavigationAgent with target_position updates on a timer.
MANDATORY — READ: Single→Multiplayer → Networking → Server Arch
Do NOT load single-player genre blueprints.
MultiplayerSpawner handles replication in Godot 4. Configure it per scene, not globally.> [!CAUTION] Workflow 8 NEVER List
> - NEVER trust rpc_id(1, ...) (Client to Server) without validation. A hacked client can send damage = 999999.
> - NEVER replicate _process transforms directly. Replicate Input vector and simulate movement on both sides.
> - NEVER use TCP for high-frequency packets (movement). Use UDP / ENet and handle dropped packets with interpolation.
> - NEVER synchronize every projectile; use Client-Side Prediction for visuals and only RPC the "Fire" event.
ReflectionProbe vs VoxelGI vs SDFGI: Probes are cheap/static, VoxelGI is medium/baked, SDFGI is expensive/dynamic. Choose based on your platform budget (see Part 5).MANDATORY Chain: UI Containers → UI Theming → Rich Text → Tweening
MOUSE_FILTER_STOP only on the background, PASS on children.add_theme_constant_override("separation", X) over manual padding.responsive_layout_builder.gd for breakpoint-aware mobile/desktop switching.await get_tree().process_frame before modifying scroll_vertical.Resource-to-UI binding; UI nodes MUST be stateless projection layers.> [!CAUTION] Workflow 9 NEVER List
> - NEVER use absolute pixel offsets. UI becomes unreadable on 4K or tiny mobile screens. Use Container sizing.
> - NEVER deep-nest MarginContainers. It makes the Inspector unusable. Use a single Theme resource for project-wide margins.
> - NEVER connect UI buttons to gameplay logic directly. UI sends "Signal", PlayerController listens. This prevents UI-deletion crashes.
> - NEVER use _process() to move a UI element to a target. Use a Tween to avoid stuttering and frame-rate dependence.
> - NEVER leave mouse_filter as STOP on transparent containers; it "eats" clicks for everything behind it.
load() on paths without validating the res:// prefix and safe extension (.tres, .res, .theme) — Prevents arbitrary code/resource execution.MANDATORY Chain: 3D Lighting → Particles → 3D Materials → Shaders
fake_gi_bounce.gd for mobile fills.finished signal over Timers. Re-run with restart() to avoid async GPU stalls.ORM Texture packing (AO/Rough/Metal) to save GPU cache and texture slots.Instance Uniforms for material variations across thousands of instances without draw call penalties.> [!CAUTION] Workflow 10 NEVER List
> - NEVER scale CollisionShape nodes; strictly scale the Shape Resource to avoid physics jitter.
> - NEVER use TRANSPARENCY_ALPHA for cutout meshes (leaves/fences); use ALPHA_SCISSOR to prevent sorting artifacts.
> - NEVER animate CSG nodes during gameplay; forces expensive CPU geometry recalculation.
> - NEVER use real-time Global Illumination (SDFGI/VoxelGI) for a 2D-looking game. Stick to DirectionalLight2D and CanvasModulate.
> - NEVER ignore Camera3D near/far planes; improper settings cause Z-fighting in large worlds.
MANDATORY: Builder
Use ONLY for batch operations or complex procedural scaffolds. Prefer the standalone godot-builder skill when doing heavy CLI automation.
create_scene.py to define the root node and .tscn path.add_node.py for children. Set owner on every node so serialization keeps them.run_project.py or launch_editor.py to verify the scene loads cleanly.> [!CAUTION] Workflow 11 NEVER List
> - NEVER jump straight to add_node.py without designing the hierarchy first — spaghetti scenes follow.
> - NEVER use absolute filesystem paths in scripts or scene props; use res:// only.
> - NEVER add a CollisionShape2D/CollisionShape3D without assigning a Shape resource — the node alone does nothing.
> - NEVER skip verification via run_project.py / launch_editor.py after batch scene writes.
When agents ingest untrusted scene/data text before writing files:
<<<CONTEXT_START>>> and <<<CONTEXT_END>>>.res://.Each rule includes the non-obvious reason — the thing only shipping experience teaches.
get_tree().root.get_node("...") — Absolute paths break when ANY ancestor is renamed or reparented. Use %UniqueNames, @export NodePath, or signal-based discovery.load() inside a loop or _process — Synchronous disk read blocks the ENTIRE main thread. Use preload() at script top for small assets, ResourceLoader.load_threaded_request() for large ones.queue_free() while external references exist — Parent nodes or arrays holding refs will get "Deleted Object" errors. Clean up refs in _exit_tree() and set them to null before freeing._draw() — _draw() is called on the rendering thread. Mutating game state causes race conditions with _physics_process.Area2D for 1000+ overlapping objects — Each overlap check has O(n²) broadphase cost. Use ShapeCast2D, PhysicsDirectSpaceState2D.intersect_shape(), or Server APIs for bullet-hell patterns.HealthComponent calls $HUD.update_bar(), deleting the HUD crashes the game. Components emit signals; listeners decide how to respond.await in _physics_process — await yields execution, meaning the physics step skips frames. Move async operations to a separate method triggered by a signal.String keys in hot-path dictionary lookups — String hashing is O(n). Use StringName (&"key") for O(1) pointer comparisons, or integer enums.Callable references to freed objects — Crashes silently or throws errors. Disconnect signals in _exit_tree() or use CONNECT_ONE_SHOT.10. NEVER use _process for 1000+ entities — Each _process call has per-node SceneTree overhead. Use a single Manager._process that iterates an array of data structs (Data-Oriented pattern), or use Server APIs directly.
11. NEVER use Tween on a node that may be freed — If a node is queue_free()'d while a Tween runs, it errors. Kill tweens in _exit_tree() or bind to SceneTree: get_tree().create_tween().
12. NEVER request data FROM RenderingServer or PhysicsServer in _process — These servers run asynchronously. Calling getter functions forces a synchronous stall that kills performance. The APIs are intentionally designed to be write-only in hot paths.
13. NEVER use call_deferred() as a band-aid for initialization order bugs — It masks architectural problems (dependency on tree order). Fix the actual dependency with explicit initialization signals or @onready.
14. NEVER create circular signal connections — Node A connects to B, B connects to A. This creates infinite loops on the first emit. Use a mediator pattern (Signal Bus) to break cycles.
15. NEVER let inheritance exceed 3 levels — Beyond 3, debugging super() chains is a nightmare. Use composition (Node children) to add behaviors instead.
16. NEVER use _process for hit detection or movement in physics-heavy genres (FPS/ARPG); strictly use _physics_process to ensure frame-independent collision detection.
17. NEVER trust the client for authority on persistent game state (Health, XP, Inventory). Handled exclusively via Server-Auth or Secure Checksums.
18. NEVER use standard strings for high-frequency runtime checks; strictly use StringName (&"active") to avoid O(n) hashing.
19. NEVER manually handle RVO avoidance every frame in unit-heavy games (RTS/MOBA); offload to NavigationAgent internal threading.
20. NEVER block the main thread for procedural generation or heavy I/O; strictly offload to WorkerThreadPool.
21. NEVER ignore Local-to-Scene on Resources used in unique instances (e.g. enemy stats); failure causes shared-memory bugs across all instances.
22. NEVER use float for currency; strictly use Integer Cents to avoid precision drift in complex economies.
23. NEVER set target_position before physics_frame; navigation maps are not ready during _ready().
24. NEVER use TRANSPARENCY_HASH or ALPHA for large cutout surfaces (foliage); use ALPHA_SCISSOR for performance and sorting.
25. NEVER scale CollisionShape nodes (Node2D/3D scale) — Use shape handles or resize the resource to avoid unpredictable physics normals and jitter.
26. NEVER apply gravity while is_on_floor() is true — Causes micro-jitter and prevents floor-snapping; strictly reset vertical velocity to 0 or a small constant.
27. NEVER forget to disconnect dynamic signals (Capturing Lambdas) — Godot cannot auto-disconnect lambdas that capture local variables; they will cause crashes on freed objects.
28. NEVER use mouse events for mobile touch — Strictly use InputEventScreenTouch and InputEventScreenDrag for reliable multi-touch support.
29. NEVER use Forward+ renderer for mobile — Strictly use Mobile or Compatibility renderers to avoid GPU bottlenecks and battery drain.
30. NEVER accumulate mouse rotation directly on Transforms — Strictly store separate Yaw/Pitch variables to prevent gimbal lock and precision loss.
31. NEVER use standard Strings for high-frequency runtime checks — Strictly use StringName (&"active") to avoid O(n) hashing overhead.
32. NEVER trust the client for game state (Health, Inventory) — Clients suggest actions; Server validates and broadcasts to prevent cheating.
33. NEVER use Reliable RPCs for movement updates — Use UnreliableOrdered to prevent Head-of-Line blocking in high-latency scenarios.
| Metric | Mobile Target | Desktop Target | Expert Note |
| :--- | :--- | :--- | :--- |
| Draw Calls | < 100 (2D), < 200 (3D) | < 500 | MultiMeshInstance for foliage/debris |
| Triangle Count | < 100K visible | < 1M visible | LOD system mandatory above 500K |
| Texture VRAM | < 512MB | < 2GB | VRAM Compression: ETC2 (mobile), BPTC (desktop) |
| Script Time | < 4ms per frame | < 8ms per frame | Move hot loops to Server APIs |
| Physics Bodies | < 200 active | < 1000 active | Use PhysicsServer direct API for mass sim |
| Particles | < 2000 total | < 10000 total | GPU particles, set visibility_aabb manually |
| Audio Buses | < 8 simultaneous | < 32 simultaneous | Use Audio Systems bus routing |
| Save File Size | < 1MB | < 50MB | Seed + Delta pattern for procedural worlds |
| Scene Load Time | < 500ms | < 2s | ResourceLoader.load_threaded_request() |
This is knowledge most Godot developers never learn. When the scene tree becomes a bottleneck, bypass it entirely using Godot's low-level Server APIs.
RenderingServer with RIDs instead of Sprite2D/MeshInstance3D nodes.PhysicsServer2D body creation instead of Area2D nodes.PhysicsServer3D directly for ragdoll fields, debris, or fluid-like simulations.Bypassing the SceneTree eliminates the heavy CPU overhead of node lifecycle management, signal propagation, and virtual function overhead (like _process).
| Metric | SceneTree (Nodes) | Server APIs (RIDs) | Expert Rationale |
| :--- | :--- | :--- | :--- |
| Object Limit | ~1,000 - 5,000 | 50,000+ | SceneTree has O(n) traversal costs; Servers use O(1) direct RID handles. |
| Memory Overhead | ~2KB - 10KB per Node | < 200 bytes per RID | Nodes carry tree state, signals, and inspector metadata. RIDs are opaque 24-byte handles. |
| CPU Time | High (Virtual calls) | Minimal (Direct API) | Nodes must call _process for every instance. Servers batch operations in C++. |
| Threading | Main Thread Only | Inherently Thread-Safe | Most Server APIs are thread-safe (must be enabled in Project Settings). |
| Garbage Collection | Automatic (RefCounted) | Manual (Alloc/Free) | Servers require manual lifecycle management (RID creation/deletion). |
Expert Note: Using RIDs allows managing raw data and interacting directly with engine core logic. This is the primary "escape hatch" for bullet-hells, massive foliage, or complex procedural simulations where SceneTree housekeeping becomes the bottleneck.
Server APIs communicate through RID (Resource ID) — opaque handles to server-side objects. Critical rules:
# Create server-side canvas item (NO node overhead)
var ci_rid := RenderingServer.canvas_item_create()
RenderingServer.canvas_item_set_parent(ci_rid, get_canvas_item())
# CRITICAL: Keep resource references alive. RIDs don't count as references.
# If the Texture resource is GC'd, the RID becomes invalid silently.
var texture: Texture2D = preload("res://sprite.png")
RenderingServer.canvas_item_add_texture_rect(ci_rid, Rect2(-texture.get_size() / 2, texture.get_size()), texture)
add_child.call_deferred() to attach them to the live tree.Mutex.Resource from multiple threads simultaneously — use one loading thread.Expert implementations of common architectural and gameplay systems.
@export Resources are shared by default: Multiple scene instances ALL share the same Resource. Use resource.duplicate() in _ready() or enable "Local to Scene" checkbox. This is the #1 most reported Godot 4 bug by newcomers.connect("signal_name", target, "method") (Godot 3 syntax) compiles but does nothing in Godot 4. Must use signal_name.connect(callable).Tween is no longer a Node: Created via create_tween(), bound to the creating node's lifetime. If that node is freed, the Tween dies. Use get_tree().create_tween() for persistent tweens.PhysicsBody layers vs masks: collision_layer = "what I am". collision_mask = "what I scan for". Setting both to the same value causes self-collision or missed detections.StringName vs String in hot paths: StringName (&"key") uses pointer comparison (O(1)). String uses character comparison (O(n)). Always use StringName for dictionary keys in _process.@onready timing: Runs AFTER _init() but DURING _ready(). If you need constructor-time setup, use _init(). If you need tree access, use @onready or _ready(). Mixing them causes nulls.RenderingServer or PhysicsServer getter functions in _process forces a synchronous pipeline flush. These servers run async — requesting data from them stalls the entire pipeline until the server catches up.move_and_slide() API change: Returns bool (whether collision occurred). Velocity is now a property, not a parameter. velocity = dir * speed before calling move_and_slide().> [!IMPORTANT]
> Load ONLY the modules needed for your current workflow. Use the Decision Matrix in Part 2 to determine which chain to follow.
Foundations | Composition | App Composition | Signals | Autoloads | States | Resources | Templates | Analyst | Auditor | Builder
GDScript Mastery | Testing Patterns | Debugging/Profiling | Performance Optimization
2D Animation | 2D Physics | Tilemaps | Animation Player | Animation Tree | CharacterBody2D | Particles | Tweening | Shader Basics | Camera Systems
3D Lighting | 3D Materials | 3D World Building | Physics 3D | Navigation/Pathfinding | Procedural Generation | Raycasting
Abilities | Combat | Dialogue | Economy | Inventory | Questing | RPG Stats | Turn System | Audio | Scene Transitions | Save/Load | Secrets | Collections | Waves | Harvesting | Time Trials | Revival | Monte Carlo Balancer
UI Containers | Rich Text | Theming | Input Handling | Seasonal Theming
Multiplayer | Server Logic | Export Builds | Desktop | Mobile | Web | Console | VR
Action RPG | Shooter | Shooter FPS | RTS | MOBA | Rogue-like | Survival | Open World | Metroidvania | Platformer | Fighting | Stealth | Sandbox | Horror | Puzzle | Racing | Rhythm | Sports | Battle Royale | Card Game | Visual Novel | Romance | Simulation | Tower Defense | Idle Clicker | Party | Educational
Symptom: Node exists in tree but isn't rendering.
Expert diagnosis chain: visible property → z_index → parent CanvasLayer wrong layer → modulate.a == 0 → behind camera's near clip (3D) → SubViewport.render_target_update_mode not set → CanvasItem not in any CanvasLayer (renders behind everything).
Symptom: Clicks or key presses ignored intermittently.
Expert diagnosis: Another Control node with mouse_filter = STOP overlapping the target. Or, modal PopupMenu consuming unhandled input. Or, _unhandled_input() in another script calling get_viewport().set_input_as_handled().
Symptom: Character vibrates at surface contacts.
Expert diagnosis: Safe Margin too large. Or, _process used for movement instead of _physics_process (interpolation mismatch). Or, collision shapes overlap at spawn (push each other apart permanently).
Symptom: RAM grows steadily during play.
Expert diagnosis: queue_free() called but reference held in Array/Dictionary. Or, signals connected with CONNECT_REFERENCE_COUNTED without cleanup. Use Profiler "Objects" tab to find orphaned instances. Search for Node instances without a parent.
Symptom: Smooth FPS but periodic drops.
Expert diagnosis: GDScript GC pass. Or, synchronous load() for a large resource. Or, NavigationServer rebaking. Or, Server API query stall (requesting data from RenderingServer in _process). Profile with built-in Profiler → look for function-level spikes.
Mental model shifts for senior engineers transitioning from the Unity ecosystem.
In Unity, a GameObject is a container for Components. In Godot, everything is a Node.
GameObject + Transform + MeshFilter + Script.MeshInstance3D node (which *is* a Transform and a Mesh) with a script attached.Node or Area3D as a child called "Health". Use RefCounted for logic-only components to save memory.Godot doesn't have "Prefabs" because every scene is a prefab.
.tscn file. This promotes "Post-Order Traversal" (children are ready before parents).Godot's Signal system is a native implementation of the Observer pattern.
event Action OnDeath;.signal died.When you attach a script to a node, that script is the node.
GetComponent<MyScript>().extends CharacterBody3D).var x: int = 5) to gain compilation speedups and editor completion. Typed GDScript uses optimized opcodes when types are known at compile time.Unlike Unity's C# which can have "GC spikes", GDScript uses Reference Counting.
Unity uses int or Enum for performance. Godot uses StringName.
&"name" for constant-time (O(1)) pointer comparisons in dictionaries and signal lookups.Take thedivergentai/godot-master from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.