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