You are viewing a potentially older version of this package. View all versions.
GoldenJude-Blacksmiths_tools-2.0.1 icon

Blacksmiths tools

A fix for incorrectly deforming skinned meshes on custom items. Additionally to hide parts of the player model to prevent clipping.

Date uploaded 2 years ago
Version 2.0.1
Download link GoldenJude-Blacksmiths_tools-2.0.1.zip
Downloads 14349
Dependency string GoldenJude-Blacksmiths_tools-2.0.1

This mod requires the following mods to function

denikson-BepInExPack_Valheim-5.4.2105 icon
denikson-BepInExPack_Valheim

BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.

Preferred version: 5.4.2105

README

Notes

In case of questions you may find me on the Modding discord server

Features

Bone reoder

  • Automatically fixes the order of bones in skinned mesh renderers for custom armors/capes/utility items etc., solving the issue of incorrectly deformed meshes as long as the mesh has the correct bone weights

Body hiding

  • provides the ability to hide certain parts of the player model for easier armor creation

Installation

Place the BlacksmithTools.dll into your Bepinex/plugins folder.

Configuration

Body hiding is configured by specifying a combination of body part names and bone indexes There are two ways to configure body hiding:

Config file

Create a file named bsmith.[ITEM PREFAB NAME] and launch once to generate fields

Code

Access the BlacksmithTools.BodypartSystem class and insert your configuration into either of the two dictionaries with the key being the item's prefab name

Valid values for configuration via part names

Head
Torso
ArmUpperLeft
ArmLowerLeft
HandLeft
ArmUpperRight
ArmLowerRight
HandRight
LegUpperLeft
LegLowerLeft
FootLeft
LegUpperRight
LegLowerRight
FootRight

Values for configuration via bone indexes (list gained by printing out player model's bones array)

Hips - 0
Spine - 1
Spine1 - 2
Spine2 - 3
Neck - 4
Head - 5
Jaw - 6
LeftShoulder - 7
LeftArm - 8
LeftForeArm - 9
LeftHand - 10
LeftHandThumb1 - 11
LeftHandThumb2 - 12
LeftHandThumb3 - 13
LeftHandIndex1 - 14
LeftHandIndex2 - 15
LeftHandIndex3 - 16
LeftHandMiddle1 - 17
LeftHandMiddle2 - 18
LeftHandMiddle3 - 19
LeftHandRing1 - 20
LeftHandRing2 - 21
LeftHandRing3 - 22
LeftHandPinky1 - 23
LeftHandPinky2 - 24
LeftHandPinky3 - 25
RightShoulder - 26
RightArm - 27
RightForeArm - 28
RightHand - 29
RightHandThumb1 - 30
RightHandThumb2 - 31
RightHandThumb3 - 32
RightHandIndex1 - 33
RightHandIndex2 - 34
RightHandIndex3 - 35
RightHandMiddle1 - 36
RightHandMiddle2 - 37
RightHandMiddle3 - 38
RightHandRing1 - 39
RightHandRing2 - 40
RightHandRing3 - 41
RightHandPinky1 - 42
RightHandPinky2 - 43
RightHandPinky3 - 44
LeftUpLeg - 45
LeftLeg - 46
LeftFoot - 47
LeftToeBase - 48
RightUpLeg - 49
RightLeg - 50
RightFoot - 51
RightToeBase - 52

Changelog

  • 2.0.1
    Error when equipping armors with disabled skinned mesh renderers (plate armor) should be fixed
  • 2.0.0
    Added configuration to disable features separately
    Changed body hiding to alter the body mesh directly without having to supply my own mesh