mirror of
https://github.com/tonytins/dressupzack
synced 2025-12-19 13:14:43 -05:00
7 lines
247 B
GDScript
7 lines
247 B
GDScript
# This project is licensed under the MPL license.
|
|
# See the LICENSE file in the project root for more information.
|
|
extends "res://scripts/clothing/clothing_base.gd"
|
|
|
|
func _on_undies_pressed():
|
|
character.underwear = texture_normal
|
|
$select.play()
|