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

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);
}
}
}