mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
10 lines
165 B
GDScript
10 lines
165 B
GDScript
extends Label
|
|
|
|
var ip_address = ""
|
|
|
|
|
|
func _on_join_button_pressed():
|
|
Network.ip_address = ip_address
|
|
Network.join_server()
|
|
get_parent().get_parent().queue_free()
|