17 lines
341 B
C#
17 lines
341 B
C#
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);
|
|
}
|
|
}
|
|
}
|