You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
280 B
GDScript
14 lines
280 B
GDScript
2 years ago
|
extends "res://UI/Label.gd"
|
||
|
|
||
|
export(String) var tl_tooltip
|
||
|
|
||
|
func show_tooltip():
|
||
|
var label = Label.new()
|
||
|
label.set_text(tr(tl_tooltip))
|
||
|
label.set_global_position(get_global_position())
|
||
|
add_child(label)
|
||
|
|
||
|
func _ready():
|
||
|
tl = "?"
|
||
|
connect("mouse_entered", self, "show_tooltip")
|