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/Actors/Objects/Computer/UI/ControlComp.gd

13 lines
344 B
GDScript3
Raw Normal View History

2020-07-06 22:00:39 +00:00
extends Control
onready var scene = $"/root/scene" as GameInstance
func _ready():
pass
func _ship_velocity_changed(value):
scene.process_command(UICommand.new(UICommand.CommandType.SetShipSpeed, [value]))
func _ship_direction_changed(value):
scene.process_command(UICommand.new(UICommand.CommandType.SetShipDirection, [deg2rad(value)]))