mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-07 05:54:49 -04:00
7 lines
227 B
GDScript
7 lines
227 B
GDScript
extends "res://scripts/clothing/baseClothing.gd"
|
|
|
|
onready var character = preload("res://resources/character.tres")
|
|
onready var clothing = $clothing
|
|
|
|
func _on_accessory_pressed():
|
|
character.accessory = clothing.texture_normal
|