I don’t have access to Discord so please don’t ask me to put my question there.
How can i make a clothing mod that adds a new clothing piece to the game? I looked at the example_enemy mod in the repo but that doesn’t help with clothes.
I can get the item to be listed in the “Change Outfit” menu items using “AddModel” but there’s no graphic. What am i doing wrong?
init.ks:
'use strict';
AddModel({
Name: "NewItem",
TopLevel: true,
Categories: ["Hats"],
Folder: "NewItem",
Layers: ToLayerMap([
{ Name: "NewItem", Layer: "Hat", Pri: 70,
HideWhenOverridden: true,
Invariant: true,
},
])
});
new_item.zip/
├─ Models/
│ ├─ NewItem/
│ │ ├─ NewItem.png
├─ init.ks