Add hermione level to menu
This commit is contained in:
parent
5012b5f73e
commit
ded1600175
4
menu.gd
4
menu.gd
@ -5,6 +5,7 @@ const LEVEL_3_ROOMS: PackedScene = preload("res://levels/level_3_rooms.
|
||||
const LEVEL_PLATFORMER: PackedScene = preload("res://levels/level_platformer.tscn")
|
||||
const LEVEL_SEMAPHORE_LIGHTS: PackedScene = preload("res://levels/level_semaphore_lights.tscn")
|
||||
const LEVEL_CUBE_PORTALS: PackedScene = preload("res://levels/level_cube_portals.tscn")
|
||||
const LEVEL_HERMIONE: PackedScene = preload("res://levels/level_hermione.tscn")
|
||||
|
||||
@onready var items_container: VBoxContainer = $CenterContainer/ItemsContainer
|
||||
|
||||
@ -13,7 +14,8 @@ var levels: Dictionary = {
|
||||
"Semaphore - Lights Demo": LEVEL_SEMAPHORE_LIGHTS,
|
||||
"5 rooms": LEVEL_5_ROOMS,
|
||||
"Platform": LEVEL_PLATFORMER,
|
||||
"Recurisve portals - WIP": LEVEL_CUBE_PORTALS
|
||||
"Recurisve portals - WIP": LEVEL_CUBE_PORTALS,
|
||||
"Multiple Worlds": LEVEL_HERMIONE
|
||||
}
|
||||
|
||||
func _ready() -> void:
|
||||
|
Loading…
Reference in New Issue
Block a user