I like the idea but, the carrier keeps getting stuck . I notice when this happened , rolling your face on the keyboard pans the camera to the right a little , and undoes the construction of the buildings. I somehow ended up getting 5 ruby gems in the process.
Great game idea , I would love to see more of this.
Please insert the following code into one of your scripts please. :)
#quit game with ESC
func _input(event):
if event.is_action_pressed("ui_cancel"):
get_tree().quit()
OR if you really want to be a godam mad man...
#stop players from quiting AltF4 or X button
func _notification(what):
if what == NOTIFICATION_WM_CLOSE_REQUEST:
get_tree().set_auto_accept_quit(false)