mirror of
https://git.kittycat.homes/zoe/pegchamp.git
synced 2024-08-15 03:15:39 +00:00
10 lines
218 B
GDScript
10 lines
218 B
GDScript
extends CanvasLayer
|
|
|
|
func _ready():
|
|
$AnimationPlayer.play("win")
|
|
|
|
|
|
func _on_AnimationPlayer_animation_finished(anim_name):
|
|
$Congratulations.visible = false
|
|
$Congratulations2.visible = false
|
|
$Control.visible = true
|