mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
20 lines
453 B
GDScript
20 lines
453 B
GDScript
extends Node2D
|
|
|
|
var text setget _set_text
|
|
var button_texts = ["Got it!", "Interesting!", "Very useful!", "Cool!", "Nice!", "Thanks!", "Whatever...", "Okay!", "Yay!", "Awesome!"]
|
|
|
|
func _ready():
|
|
button_texts.shuffle()
|
|
$Panel/CenterContainer/OK.text = button_texts[0]
|
|
|
|
#func _gui_input(event):
|
|
# if event is InputEventMouseButton:
|
|
# queue_free()
|
|
|
|
func _set_text(new_text):
|
|
text = new_text
|
|
$Panel/Label.text = new_text
|
|
|
|
|
|
func confirm():
|
|
queue_free()
|