godot-performance-optimization
Installation
SKILL.md
Performance Optimization
Profiler-driven analysis, object pooling, and visibility culling define optimized game performance.
Available Scripts
worker_thread_pool_manager.gd
Expert logic for offloading heavy computation to Godot 4's WorkerThreadPool for multi-threaded processing.
object_pool_system.gd
Minimal allocation strategy using node visibility and process toggling instead of constant instantiation.
rendering_server_direct.gd
Bypassing the SceneTree logic for massive canvas item rendering directly via the RenderingServer.
low_level_physics_query.gd
High-performance direct physics space state queries, faster than using RayCast nodes for hundreds of checks.