19 lines
384 B
GDScript
19 lines
384 B
GDScript
extends Button
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
self.connect("pressed", Callable(self, "_on_Button_pressed"))
|
|
|
|
# Function to handle the button press
|
|
func _on_Button_pressed():
|
|
if Global.teamScreenVisible == false:
|
|
Global.teamSelectionVisible = false
|
|
Global.teamScreenVisible = true
|
|
else:
|
|
Global.teamScreenVisible = false
|
|
|
|
|
|
|
|
|