12 lines
429 B
GDScript
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)
|