update logo and change some text

This commit is contained in:
Persephone Bubblegum-Holiday 2025-07-31 23:36:33 -07:00
parent 72b8578ece
commit 539c09e5fe
7 changed files with 57 additions and 9 deletions

View file

@ -162,12 +162,10 @@ func _showtape_menu_button_pressed(id: int) -> void:
2: #save
if (showtape_loaded): $ShowtapeSaveScreen.visible = true
else: $NoShowtapeLoadedDialog.show()
3: # controls
$ControlsScreen.visible = true
4: # exit menu
3: # exit menu
if (showtape_loaded): $ExitMenuOverwriteConfirmationDialog.show()
else: get_tree().change_scene_to_file("res://Scenes/GUI/MainMenu.tscn")
5: # exit desktop
4: # exit desktop
if (showtape_loaded): $ExitDesktopOverwriteConfirmationDialog.show()
else: get_tree().quit()

View file

@ -3,6 +3,7 @@ extends Control
func _ready():
OS.request_permissions()
randomize()
$VersionLabel.text = "Pneumatic Plaything v%s" % ProjectSettings.get_setting("application/config/version")
$Backgrounds.get_child(randi() % $Backgrounds.get_child_count()).visible = true
var moddir = DirAccess.open("user://Mods")