Draw HEAD under terminal popup

This commit is contained in:
Sebastian Morr 2020-10-29 16:17:04 +01:00
parent c343546473
commit 6b612c083d
2 changed files with 6 additions and 2 deletions

View file

@ -99,6 +99,9 @@ func load_level(level_id):
yield(t, "timeout")
AudioServer.set_bus_mute(AudioServer.get_bus_index("Master"), false)
# FIXME: Need to clean these up when switching levels somehow.
chapter_select.select(current_chapter)
level_select.select(current_level)
func reload_level():
levels.reload()
@ -119,7 +122,7 @@ func repopulate_levels():
levels.reload()
level_select.clear()
for level in levels.chapters[current_chapter].levels:
level_select.add_item(level.slug)
level_select.add_item(level.title)
level_select.select(current_level)
func repopulate_chapters():

View file

@ -73,6 +73,7 @@ func type_set(new_type):
file_browser.title = "Commit"
if type != "ref":
$ID.text = $ID.text.substr(0,8)
z_index = -1
match new_type:
"blob":
$Sprite.texture = preload("res://nodes/blob.svg")
@ -88,7 +89,7 @@ func type_set(new_type):
"head":
$Sprite.texture = preload("res://nodes/head.svg")
id_always_visible = false
z_index = 1
z_index = 0
if id_always_visible:
$ID.show()