AddWearableSlotToHiddenList
HiddenWearableManager.AddWearableSlotToHiddenList
Declaration public void AddWearableSlotToHiddenList(WearableSlot _wearableSlot);
Parameters
Parameter
Description
WearableSlot _wearableSlot
The Wearable Slot you want to copy the data from to the Hidden Wearable Manager.
Description The public function to add a Wearable to the hidden manager list. The following code demonstrates how to do so. In this example, we are adding the current chest Wearable to the Hidden Wearable Manager:
ModularCharacterManager myCharacter;
WearableSlot chestSlot = myCharacter.currentSet.wearableSlots[WearableIndices.chestIndex];
myCharacter.hiddenWearableManager.AddWearableSlotToHiddenList(chestSlot);
Last updated