1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-06-26 08:34:43 -04:00

Replaced with piano song

- Replaced with the piano melody with an song find in typical RPGs.
- New Remove Pants/Shirt buttons
- About window was redone with the license moved to it's own dedicated window that now includes CC-BY 4.0 notice as well.
- New assets: blue camo pants and the shirt from the cancelled "What's New Zack?"
- The Zack sprite was modified to work with the new shirt. This doesn't affact older ones, though.
This commit is contained in:
Anthony Wilcox 2019-01-04 09:28:39 -05:00
parent 1d64362544
commit 07114accec
17 changed files with 477 additions and 134 deletions

View file

@ -74,8 +74,20 @@ func _on_Beat_Up_Jeans_pressed():
func _on_NL_Jacket_pressed():
change_tops(load("res://assets/nl_jacket.png"))
func _on_Blue_Camo_Jeans_pressed():
change_bottoms(load("res://assets/blue_camo_jeans.png"))
func _on_ClearBtn_pressed():
change_bottoms(null)
change_undies(load("res://assets/briefs.png"))
change_tops(null)
func _on_Whats_New_Shirt_pressed():
change_tops(load("res://assets/whatsnew_shirt.png"))
func _on_Remove_Shirt_pressed():
change_tops(null)
func _on_Remove_Pants_pressed():
change_bottoms(null)

View file

@ -2,21 +2,23 @@
# See the LICENSE file in the project root for more information.
extends Control
onready var about_win = $AboutWin
onready var credits_win = $CreditsWin
onready var settings_win = $SettingsWin
func _on_AboutBtn_pressed():
about_win.show()
$AboutWin.show()
func _on_CreditsBtn_pressed():
credits_win.show()
$CreditsWin.show()
func _on_SettingsBtn_pressed():
settings_win.show()
$SettingsWin.show()
func _on_LicenseBtn_pressed():
$LicenseWin.show()
func _on_CloseAbtBtn_pressed():
$AboutWin.hide()
func _on_MusicBtn_toggled(button_pressed):
if button_pressed == true:
$Music.play()
$Music.playing = true
else:
$Music.stop()
$Music.playing = false