mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-06 05:44:48 -04:00
- 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
10 lines
354 B
GDScript
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
|