mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-06 05:44:48 -04:00
- You can finally save and load your different styles! - Brand new icons from Font Awesome! - The clear button was refreshed and replaced with the trash can. While I've never gotten complaints about the interface, this should prove to be less confusing. - Clear button moved next to save/load. - Introduced a basic indicator when loading and saving - Bumped version to 1.10
15 lines
582 B
GDScript
15 lines
582 B
GDScript
# This project is licensed under the MPL license.
|
|
# See the LICENSE file in the project root for more information.
|
|
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/character_base_top.svg")
|
|
onready var base_bottom = preload("res://sprites/character/character_base_legs.svg")
|
|
|
|
func _ready():
|
|
var verLabel = $versionLbl
|
|
verLabel.text = "v" + version
|
|
GameData.version = version
|