heliostat/src/ui/overlay_effects.gd

19 lines
384 B
GDScript3
Raw Normal View History

2024-07-23 00:25:13 -06:00
class_name OverlayEffects
extends Control
@onready var animation_player: AnimationPlayer = $"../../AnimationPlayer"
func play_boost() -> void:
animation_player.play("boost_lines")
animation_player.seek(0)
2024-07-31 00:56:29 -06:00
func play_destructure() -> void:
animation_player.play("destructure_alert")
animation_player.seek(0)
func play_death() -> void:
animation_player.play("death_overlay")