This repository has been archived on 2020-09-30. You can view files and clone it, but cannot push or open issues or pull requests.
odyssey-old/Scenes/Game.gd

18 lines
423 B
GDScript

extends Node
class_name GameInstance
onready var ui = $CanvasLayer/ui
onready var world = $world
onready var systems = $systems
func _ready():
ui.connect("command", world, "process_command")
func process_command(cmd: UICommand):
match cmd.cmd_type:
UICommand.CommandType.SetShipSpeed:
world.map.ship_speed = cmd.cmd_args[0]
UICommand.CommandType.SetShipDirection:
world.map.ship_direction = cmd.cmd_args[0]