Files
ToriaAssets/Imports/UMA/Examples/DynamicCharacterSystem Examples/Scripts/Scene2and3/CSWardrobeSlotChangerDD.cs
T

17 lines
341 B
C#
Raw Normal View History

2026-05-06 15:07:56 +02:00
using UnityEngine;
using UnityEngine.UI;
namespace UMA.CharacterSystem.Examples
{
public class CSWardrobeSlotChangerDD : MonoBehaviour
{
public string wardrobeSlotToChange;
public TestCustomizerDD customizerScript;
public void ChangeWardrobeSlot(int slotId){
customizerScript.SetSlot(wardrobeSlotToChange, slotId -1);
}
}
}