Replaced main font with bitmap

This commit is contained in:
2024-05-11 17:08:52 +01:00
parent efcae24df1
commit 7c43fb1bb8
17 changed files with 196 additions and 90 deletions

View File

@@ -1,6 +1,9 @@
extends Node2D
func _ready() -> void:
$VBoxContainer/Left.select_by_name("NOTFOUND")
$VBoxContainer/Right.select_by_name("NOTFOUND")
$VBoxContainer/Background.select_by_name("BlueSlash")
Music.pause()
func _on_background_item_selected(index: int) -> void:
@@ -70,8 +73,8 @@ func load_level_from_object(data : Dictionary) -> void:
func _on_new_pressed() -> void:
$VBoxContainer/Name.text = ""
$VBoxContainer/Left.select_by_name("DUNKANOID")
$VBoxContainer/Right.select_by_name("DUNKANOID")
$VBoxContainer/Left.select_by_name("NOTFOUND")
$VBoxContainer/Right.select_by_name("NOTFOUND")
$VBoxContainer/Background.select_by_name("BlueSlash")
$Background.texture = load($VBoxContainer/Background.get_selected_filename())
$VBoxContainer/Tint.text = "FFFFFF"