mirror of
https://github.com/tonytins/dressupzack
synced 2025-06-25 08:04:43 -04:00
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
This commit is contained in:
parent
b470b9baef
commit
a2b238532d
22 changed files with 358 additions and 77 deletions
10
scripts/ui.gd
Normal file
10
scripts/ui.gd
Normal file
|
@ -0,0 +1,10 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue