1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-26 05:37:46 +00:00

Add smallclothes hands and feet gear

This commit is contained in:
Joshua Goins 2023-07-08 11:58:23 -04:00
parent 31f7e5733e
commit 77ad2b7298

View file

@ -136,6 +136,24 @@ void FullModelViewer::reloadGear() {
gearView->addGear(info);
}
// smallclothes hands
{
GearInfo info = {};
info.name = "Smallclothes Hands";
info.slot = Slot::Hands;
gearView->addGear(info);
}
// smallclothes hands
{
GearInfo info = {};
info.name = "Smallclothes Feet";
info.slot = Slot::Feet;
gearView->addGear(info);
}
}
void FullModelViewer::updateHeightScaling(float scale) {