mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-11 19:04:50 +01:00
Auto-forward to level select when run from editor
This commit is contained in:
parent
7903a8d9f3
commit
fd58638753
3 changed files with 5 additions and 2 deletions
|
@ -51,7 +51,7 @@ _global_script_class_icons={
|
|||
[application]
|
||||
|
||||
config/name="git-hydra"
|
||||
run/main_scene="res://scenes/level_select.tscn"
|
||||
run/main_scene="res://scenes/title.tscn"
|
||||
config/use_custom_user_dir=true
|
||||
boot_splash/bg_color=Color( 0, 0, 0, 1 )
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ var used_cards = false
|
|||
|
||||
var current_chapter = 0
|
||||
var current_level = 0
|
||||
var skipped_title = false
|
||||
|
||||
var _file = "user://savegame.json"
|
||||
var state = {}
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
extends Control
|
||||
|
||||
func _ready():
|
||||
pass
|
||||
if !OS.has_feature("standalone") and !game.skipped_title:
|
||||
game.skipped_title = true
|
||||
get_tree().change_scene("res://scenes/level_select.tscn")
|
||||
|
||||
func quit():
|
||||
get_tree().quit()
|
||||
|
|
Loading…
Reference in a new issue