mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-07 14:04:48 -04:00
- New Emoji-based shirts based on Twemoji because the idea sounded fun. Credits will eventually be added in-game but for now it's in the README. - For the time being, a few of the ZC's Dress Up-era shirts have pulled because they were never properly ported over during the remaster. - The train sweater had it's track logo replaced with the train emoji. - Removed PNG clothing sprites. - Version label.
18 lines
561 B
GDScript
18 lines
561 B
GDScript
extends Control
|
|
|
|
export var version: String = "1.0.0"
|
|
|
|
onready var character = preload("res://resources/character.tres")
|
|
onready var blank_accessory = preload("res://sprites/clothes/blank_top.png")
|
|
onready var base_top = preload("res://sprites/character_base_top.svg")
|
|
onready var base_bottom = preload("res://sprites/character_base_legs.svg")
|
|
|
|
func _ready():
|
|
var verLabel = $versionLbl
|
|
verLabel.text = "v" + version
|
|
|
|
func _on_clearBtn_pressed():
|
|
$clear.play()
|
|
character.accessory = blank_accessory
|
|
character.bottom = base_bottom
|
|
character.top = base_top
|