spacevroom

A SkyRoads clone with only one boring "level" written in Godot Engine version 3.
git clone https://kaka.farm/~git/spacevroom
Log | Files | Refs | LICENSE

LevelSelection.gd (1309B)


      1 extends Control
      2 
      3 
      4 # Space Vroom, an unoriginal space racer.
      5 # Copyright (C) 2021  Yuval Langer
      6 #
      7 # This program is free software: you can redistribute it and/or modify
      8 # it under the terms of the GNU Affero General Public License as
      9 # published by the Free Software Foundation, either version 3 of the
     10 # License, or (at your option) any later version.
     11 #
     12 # This program is distributed in the hope that it will be useful,
     13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 # GNU Affero General Public License for more details.
     16 #
     17 # You should have received a copy of the GNU Affero General Public License
     18 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
     19 
     20 
     21 onready var item_list: ItemList = $VBoxContainer/ItemList
     22 
     23 
     24 const item_text_to_level_path: Dictionary = {
     25 	"Vanilla Sky": "res://Level1.tscn"
     26 }
     27 
     28 
     29 var level_selected: String = ""
     30 
     31 
     32 func _ready() -> void:
     33 	pass
     34 
     35 
     36 func _on_ItemList_item_selected(index: int) -> void:
     37 	var item_text: String = item_list.get_item_text(index)
     38 	var level_path: String = item_text_to_level_path[item_text]
     39 	print_debug(index, " ", item_text, " ", level_path)
     40 	get_tree().change_scene(level_path)
     41 
     42 
     43 func _on_Button_pressed() -> void:
     44 	get_tree().change_scene("res://Level1.tscn")