1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-06 05:44:48 -04:00
dressupzack/scripts/ui.gd
Anthony Foxclaw a2b238532d Re-added more clothes
- Updated README
- Added more pants and shirts
- Added flash original flash games in new /archive directory
- Updated game theme
- Renamed CC-BY file to ASSET-LICENSE
- Resized game height to 500 pixels to closely match original
2020-06-27 18:03:54 -04:00

10 lines
354 B
GDScript

extends Control
onready var character = preload("res://resources/character.tres")
onready var blank_top = preload("res://sprites/clothes/blank_top.png")
onready var blank_bottom = preload("res://sprites/clothes/blank_bottom.png")
func _on_clearBtn_pressed():
character.accessory = blank_top
character.bottom = blank_bottom
character.top = blank_top