You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
251 B
16 lines
251 B
extends Control
|
|
|
|
|
|
func _draw():
|
|
find_node("join").grab_focus()
|
|
|
|
|
|
func _on_join_pressed():
|
|
var ip = find_node("ip").text
|
|
var port = find_node("port").get_value()
|
|
client.join_game(ip, int(port))
|
|
queue_free()
|
|
|
|
|
|
func _on_back_pressed():
|
|
queue_free()
|