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