mirror of
https://git.kittycat.homes/zoe/pegchamp.git
synced 2024-08-15 03:15:39 +00:00
11 lines
200 B
GDScript
11 lines
200 B
GDScript
extends CanvasLayer
|
|
|
|
onready var animation = $AnimationPlayer
|
|
|
|
func _ready():
|
|
$TransitionSprite.visible = true
|
|
animation.play("FadeIn")
|
|
$FadeInSound.play(0)
|
|
|
|
func finish_animation():
|
|
queue_free()
|