mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
14 lines
215 B
GDScript
14 lines
215 B
GDScript
extends PopupPanel
|
|
|
|
var text setget _set_text
|
|
|
|
func _ready():
|
|
popup()
|
|
|
|
func _gui_input(event):
|
|
if event is InputEventMouseButton:
|
|
queue_free()
|
|
|
|
func _set_text(new_text):
|
|
text = new_text
|
|
$Label.text = new_text
|