Files
millimeters-of-aluminum/scripts/singletons/signal_bus.gd
olof.pettersson d08ec0d263 Reorganize project
2025-09-22 14:26:45 +02:00

12 lines
429 B
GDScript

extends Node
# Signal emitted when the player requests to toggle the map view.
signal map_mode_toggled
# Signal emitted from the map when a body is selected to be followed.
# It passes the selected CelestialBody as an argument.
signal follow_target_selected(body: CelestialBody)
# Emitted by the NavComputer to command a timed rotation.
signal rotation_maneuver_planned(target_rotation_rad: float, time_window_seconds: float)