mirror of
https://github.com/tonytins/dressupzack
synced 2025-06-26 08:34:43 -04:00
Twemoji-based clothes
- 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.
This commit is contained in:
parent
bcaf5680b3
commit
bb3f57a1b3
71 changed files with 1861 additions and 1607 deletions
|
@ -1,10 +1,16 @@
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue