Gd - Ship Icons Work
GD ship mode is brutally sensitive to frame drops. On mobile, enable “Smooth Fix” in settings. On PC, cap FPS at 240 or 360 (monitor dependent). Tapping with 60Hz vs 144Hz changes your effective thrust timing.
All ships flap wings or rotate engines at the same rate based on velocity. But a long, narrow ship (like the “Spearhead”) appears to turn faster due to its length, even though rotation speed is fixed. Use this psychological trick: long ships feel more responsive for micro-adjustments. gd ship icons work
func set_ship_state(state):
match state:
"active":
texture_rect.texture = active_texture
modulate = Color(1,1,1)
"damaged":
texture_rect.texture = damaged_texture
modulate = Color(1,0.75,0.75)
"disabled":
texture_rect.texture = disabled_texture
modulate = Color(0.6,0.6,0.6)
Ships with one large wing (e.g., “Halfwing”) create an optical illusion of diagonal movement. Switch to a symmetrical icon (like “Classic” or “Orb”) for straight corridors. GD ship mode is brutally sensitive to frame drops