2020-12-23 12:01:07 +01:00
|
|
|
extends Control
|
|
|
|
|
2021-09-08 17:00:51 +02:00
|
|
|
|
2020-12-23 12:01:07 +01:00
|
|
|
func _ready():
|
2022-08-17 20:19:42 +02:00
|
|
|
#check_correct_lang_item()
|
2021-01-28 12:08:12 +01:00
|
|
|
if !OS.has_feature("standalone") and !game.skipped_title:
|
|
|
|
game.skipped_title = true
|
|
|
|
get_tree().change_scene("res://scenes/level_select.tscn")
|
2021-09-08 17:00:51 +02:00
|
|
|
|
2022-08-17 20:19:42 +02:00
|
|
|
#make_popup_items()
|
2020-12-23 12:01:07 +01:00
|
|
|
|
2022-08-18 12:19:13 +02:00
|
|
|
|
2020-12-23 12:01:07 +01:00
|
|
|
func quit():
|
|
|
|
get_tree().quit()
|
|
|
|
|
2022-08-18 12:19:13 +02:00
|
|
|
|
2020-12-23 12:01:07 +01:00
|
|
|
func levels():
|
|
|
|
get_tree().change_scene("res://scenes/level_select.tscn")
|
2021-01-28 11:55:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
func on_survey_pressed():
|
|
|
|
game.open_survey()
|
2021-02-04 15:19:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
func sandbox():
|
|
|
|
game.current_chapter = levels.chapters.size() - 1
|
|
|
|
game.current_level = levels.chapters[game.current_chapter].levels.size() -1
|
|
|
|
get_tree().change_scene("res://scenes/main.tscn")
|