mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-06 05:44:48 -04:00
- Due to resize issues with the grid container, TextureButton is now the root for all wardrobe items - Brought back underwear, with the exception of the owo censor (for now) - Remove clothing buttons are tied to wardrobe - Game scene now properly references the wardrobe again
7 lines
236 B
GDScript
7 lines
236 B
GDScript
extends TabContainer
|
|
|
|
onready var character = preload("res://resources/character.tres")
|
|
onready var blank_top = preload("res://sprites/clothes/tops_placeholder.png")
|
|
|
|
func _on_removeAccessory_pressed():
|
|
character.accessory = blank_top
|