Modding:Head Troubleshooting: Difference between revisions

From Baldur's Gate 3 Wiki
Jump to navigation Jump to search
mNo edit summary
Line 6: Line 6:


== Troubleshooting ==
== Troubleshooting ==
This page is for a quick reference to issues you might run into when making your head mods.
Anything from Heterochromia not working, to wrinkles on your head going overboard.
=== Heterochromia ===
Is Heterochromia not working for your custom/edited head? Thankfully this is a quick and easy fix.
So for this you do need to go back into blender.
Select your eye mesh in blender and go to Vertex Paint mode.
[[File:Vertex paint.webp|thumb]]
In the Data Tab (Green triangle that has a tiny square on each point) go to Color Attributes if you don't have anything in there click + then select Face Corner and Byte Color
[[File:Vertex Paint - Face Corner Byte Color.webp|thumb]]
You want to paint the eye on the Left fully red (#FF0000) and keep the right one black.
[[File:Eye Vertex Paint.webp|thumb]]
Now after exporting your mesh again Heterochromia should be working


=== Wrinkles ===
=== Wrinkles ===

Revision as of 17:57, 11 January 2024

Troubleshooting

This page is for a quick reference to issues you might run into when making your head mods.

Anything from Heterochromia not working, to wrinkles on your head going overboard.

Heterochromia

Is Heterochromia not working for your custom/edited head? Thankfully this is a quick and easy fix.

So for this you do need to go back into blender.

Select your eye mesh in blender and go to Vertex Paint mode.

Vertex paint.webp

In the Data Tab (Green triangle that has a tiny square on each point) go to Color Attributes if you don't have anything in there click + then select Face Corner and Byte Color

Vertex Paint - Face Corner Byte Color.webp

You want to paint the eye on the Left fully red (#FF0000) and keep the right one black.

Eye Vertex Paint.webp

Now after exporting your mesh again Heterochromia should be working

Wrinkles

So are you noticing that your characters wrinkles/expressions are more extreme than normal?

You want to edit these sections in your Heads Merged MaterialBank: _WrinkleWeightsR, _WrinkleWeightsG, _WrinkleWeightsB and _WrinkleWeightsA

						<node id="VectorParameters">
							<attribute id="BaseValue" type="fvec4" value="0 0 0 0" />
							<attribute id="Enabled" type="bool" value="False" />
							<attribute id="ExportAsPreset" type="bool" value="False" />
							<attribute id="GroupName" type="FixedString" value="" />
							<attribute id="IsColor" type="bool" value="False" />
							<attribute id="ParameterName" type="FixedString" value="_WrinkleWeightsR" />
							<attribute id="Value" type="fvec4" value="0 0 0 0" />
						</node>
						<node id="VectorParameters">
							<attribute id="BaseValue" type="fvec4" value="0 0 0 0" />
							<attribute id="Enabled" type="bool" value="False" />
							<attribute id="ExportAsPreset" type="bool" value="False" />
							<attribute id="GroupName" type="FixedString" value="" />
							<attribute id="IsColor" type="bool" value="False" />
							<attribute id="ParameterName" type="FixedString" value="_WrinkleWeightsG" />
							<attribute id="Value" type="fvec4" value="0 0 0 0" />
						</node>
						<node id="VectorParameters">
							<attribute id="BaseValue" type="fvec4" value="0 0 0 0" />
							<attribute id="Enabled" type="bool" value="False" />
							<attribute id="ExportAsPreset" type="bool" value="False" />
							<attribute id="GroupName" type="FixedString" value="" />
							<attribute id="IsColor" type="bool" value="False" />
							<attribute id="ParameterName" type="FixedString" value="_WrinkleWeightsB" />
							<attribute id="Value" type="fvec4" value="0 0 0 0" />
						</node>
						<node id="VectorParameters">
							<attribute id="BaseValue" type="fvec4" value="0 0 0 0" />
							<attribute id="Enabled" type="bool" value="False" />
							<attribute id="ExportAsPreset" type="bool" value="False" />
							<attribute id="GroupName" type="FixedString" value="" />
							<attribute id="IsColor" type="bool" value="False" />
							<attribute id="ParameterName" type="FixedString" value="_WrinkleWeightsA" />
							<attribute id="Value" type="fvec4" value="0 0 0 0" />
						</node>

For these turn <attribute id="Enabled" type="bool" value="False" /> to <attribute id="Enabled" type="bool" value="True" /> on each of these sections. It will set them all to 0 which I suggest testing first in game as you can still get wrinkles with these values. If you get 0 wrinkles and want some gradually increase these values by 0.1.

For example:

						<node id="VectorParameters">
							<attribute id="BaseValue" type="fvec4" value="0 0 0 0" />
							<attribute id="Enabled" type="bool" value="False" />
							<attribute id="ExportAsPreset" type="bool" value="False" />
							<attribute id="GroupName" type="FixedString" value="" />
							<attribute id="IsColor" type="bool" value="False" />
							<attribute id="ParameterName" type="FixedString" value="_WrinkleWeightsA" />
							<attribute id="Value" type="fvec4" value="0.1 0.1 0.1 0.1" />
						</node>