12 lines
185 B
GDScript
12 lines
185 B
GDScript
class_name Heart extends MarginContainer
|
|
|
|
func _ready():
|
|
restore()
|
|
|
|
func restore():
|
|
$UP.visible = true
|
|
$DOWN.visible = false
|
|
|
|
func fade():
|
|
$UP.visible = false
|
|
$DOWN.visible = true
|