stick-the-quick/test/SkipMainMenu.gd

11 lines
263 B
GDScript3
Raw Normal View History

class_name SkipMainMenu extends Node
@export var level_entrance_parameters: LevelEntranceParameters
func _ready() -> void:
_run.call_deferred()
func _run() -> void:
await Storyboard.switch_character(&'stick')
Storyboard.go_to_map(level_entrance_parameters)