8 lines
132 B
GDScript3
8 lines
132 B
GDScript3
|
extends Button
|
||
|
|
||
|
@export var address: String
|
||
|
@export var port: int
|
||
|
|
||
|
func _ready():
|
||
|
text = "Connect to " + address + ":" + str(port)
|