alai/godot/hud/CoinHUD.gd

9 lines
193 B
GDScript3
Raw Normal View History

2022-08-01 15:05:09 -04:00
extends CanvasLayer
# Called every frame. 'delta' is the elapsed time since the previous frame.
2022-08-26 13:48:39 -04:00
func _physics_process(_delta):
2022-08-01 15:05:09 -04:00
if get_tree().paused:
visible = false
else:
visible = true