• Editor
  • Noob Unity 2D Toolkit Questions Slot/Item Visibilty

So In my attempt to make an Avatar system I have made slots for Each area for 6 types of character:

For example one the Back Bone I have these Slots:
b[/b]
Viking_Male_Torso

Pirate_Male_Torso

Each of these Slots have Multiple Images in them:
b[/b]
Red Torso.png
Green Torso.png
Yellow Torso.png

*Not all Types of character have the Same Number of Images.

So I am looking for the proper Unity code to turn Visibility On/Off for Slots. And the Proper way to iterate through the Images that are stored in the slots. Also can a single slot have 2 images visible at Once?

Thanks for any help 🙂

Related Discussions
...

On the goblin example there are no slots for the spear so I'm not sure how to change the code.

A slot has 0 or 1 attachment. You should use skins if you have a number of variations of the same attachments. See the skins video.

To make the slots active attachment disappear you could do:

skeleton.FindSlot("thing").Attachment=null;

That should do what your looking for.