A Third-Person-Shooter Godot game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
266 B

extends ItemList
# Initiallize and manage level selection list
func _ready():
add_item("Home", load("res://level/catalunya/icon.webp"))
add_item("test_map1", load("res://level/test_map1/icon.webp"))
select(0)
func _on_LevelList_nothing_selected():
select(0)