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

Overhualed everything

Oh boy, where to start? Zack has a tail again but it's animanted now. The background has been improved and simplfied in order to work better with the new interface. Outfits have been removed since the style makes them complicated with. Brought back previously deleted clothing and ported over new ones. There is now a "Clear" button in order to reset to the defualt. I'm also trying to figure out how to theme. Created a picture frame of "iCrazy". And so much more other little details and tweaks.
This commit is contained in:
Anthony Wilcox 2019-01-03 07:44:53 -05:00
parent 002a35bd1b
commit eadebd4a91
43 changed files with 510 additions and 272 deletions

View file

@ -1,27 +1,53 @@
# Anthony Wilcox licenses this file to you under the GPL license.
# See the LICENSE file in the project root for more information.
extends Node
onready var bottoms = load("res://assets/bottoms_placeholder.png")
onready var undies = load("res://assets/zbriefs.png")
onready var tops = load("res://assets/tops_placeholder.png")
func change_bottoms(new_bottom):
bottoms = new_bottom
if new_bottom == null:
$Body/Bottom.texture = bottoms
if undies == load("res://assets/owo_censor.png"):
change_undies(null)
$Body/Bottom.texture = bottoms
func change_undies(new_undies):
undies = new_undies
if new_undies == null:
$Body/Undies.texture = undies
$Body/Undies.texture = undies
func change_tops(new_top):
tops = new_top
if new_top == null:
$Body/Top.texture = tops
$Body/Top.texture = tops
func _on_DJ_Shorts_pressed():
change_bottoms(load("res://assets/dj_shorts.png"))
func _on_ZBriefs_pressed():
change_bottoms(load("res://assets/zbriefs.png"))
change_undies(load("res://assets/zbriefs.png"))
func _on_Briefs_pressed():
change_bottoms(load("res://assets/briefs.png"))
change_undies(load("res://assets/briefs.png"))
func _on_Jeans_pressed():
change_bottoms(load("res://assets/jeans.png"))
func _on_OwO_Censor_pressed():
change_bottoms(null)
change_undies(load("res://assets/owo_censor.png"))
func _on_Sweats_pressed():
change_bottoms(load("res://assets/sweat_pants.png"))
@ -30,10 +56,27 @@ func _on_Sweatshirt_pressed():
change_tops(load("res://assets/old_sweatshirt.png"))
func _on_DJ_Shirt_pressed():
change_tops(load("res://asssets/dj_shirt.png"))
change_tops(load("res://assets/dj_shirt.png"))
func _on_Raw_pressed():
change_tops(load("res://assets/raw_shirt.png"))
func _on_Atomic_pressed():
change_tops(load("res://assets/atomic_shirt.png"))
func _on_Z_Shirt_pressed():
change_tops(load("res://assets/z_shirt.png"))
func _on_Biker_Jacket_pressed():
change_tops(load("res://assets/biker_jacket.png"))
func _on_Beat_Up_Jeans_pressed():
change_bottoms(load("res://assets/beat_up_jeans.png"))
func _on_NL_Jacket_pressed():
change_tops(load("res://assets/nl_jacket.png"))
func _on_ClearBtn_pressed():
change_bottoms(null)
change_undies(null)
change_tops(null)

View file

@ -16,7 +16,7 @@ func shell_interface():
cmdl.text = ""
shell.show()
if cmdl.text == "help"and Input.is_key_pressed(KEY_ENTER):
if cmdl.text == "help" and Input.is_key_pressed(KEY_ENTER):
cmdl_help.show()
elif cmdl.text == "settings" and Input.is_key_pressed(KEY_ENTER):
settingsWin.show()