8 lines
170 B
GDScript
8 lines
170 B
GDScript
extends Node2D
|
|
|
|
|
|
func _ready() -> void:
|
|
Fade.fade_in(Options.transition_speed_secs)
|
|
|
|
func _input(event):
|
|
Game.change_map(load("res://menus/level_select_scholar.tscn"))
|