1
0
mirror of https://github.com/JohnBreaux/Boat-Battle.git synced 2024-11-15 13:25:58 +00:00
Boat-Battle/godot_ship/script/Message Bus.gd

21 lines
451 B
GDScript3
Raw Normal View History

2021-10-20 05:40:31 +00:00
extends Node
2021-10-20 10:13:24 +00:00
# Ignore "unused signal" warnings in this class
# warning-ignore-all:unused_signal
2021-10-20 05:40:31 +00:00
# Ask for a scene change
signal change_scene(scene_name)
2021-10-20 10:13:24 +00:00
signal start_tcsn(scene_tcsn_name)
2021-10-20 06:05:39 +00:00
# Ask to kill scene
signal kill_scene(scene_name)
2021-10-20 10:13:24 +00:00
# Ask to list active scenes
signal list_scenes()
2021-10-20 05:40:31 +00:00
# Ask to quit the game
signal quit
# Ask to return to title screen
signal return_to_title
# Ask to print a string to debug console
signal print_console(string)