ape-ame/ToggleableControl.gd

9 lines
83 B
GDScript3
Raw Normal View History

2024-04-17 15:00:20 -04:00
extends Label
func show():
show()
visible = true
func hide():
visible = false