11 lines
286 B
GDScript3
11 lines
286 B
GDScript3
|
extends CanvasLayer
|
||
|
|
||
|
@onready var signature = %"陆小蝶"
|
||
|
|
||
|
func _ready() -> void:
|
||
|
layer = GlobalConfig.LAYER_LITTLE_GAME
|
||
|
# SceneManager.pop_center_notification(tr("input_拼凑信件"))
|
||
|
signature.visible = false
|
||
|
# test
|
||
|
get_tree().create_timer(3.0).timeout.connect(signature.play)
|