Hi CheesyFX,
found a bug in
CheesyPluginSuite.cs V9.
When using the session plugin it always loaded my female plugin-preset onto male persons instead of the male-plugin-preset.
So I checked the "gender detection" first, which was working correct ... then I noticed what was wrong:
Line 227 is:
C#:
malePreset.LoadJSON(femalePreset.url.val);
should be:
C#:
malePreset.LoadJSON(malePreset.url.val);
(I think this may have also been the cause for male person rendering getting messed up in the past, because it loaded other plugins on males that where only designed for females ... I've had strange things happen with males ... parts of the body disappeared, where completely white or white and ignored rendering depth, clipping through the UI)