Page 1 of 1

Customizer Addon Errors.

Posted: Fri Oct 15, 2021 11:40 am
by pyatyorochka
Hello! After settings, i have this:
https://ibb.co/bzm6TSj
Video:
https://youtu.be/kK5Sh5KJyEE

What i have to do?

Re: Customizer Addon Errors.

Posted: Fri Oct 15, 2021 8:42 pm
by Lovatto
Hi,

This is caused due to the rifle mesh of MFPS and the customizer one are not the same,
you should not have this problem with your own weapons.

If you want to use the MFPS default rifle, then you can apply this fix:

in the script bl_AttachmentsPositions.cs -> add this variable:

Code: Select all

[Header("Settings")]
        public float transferSizeMultiplier = 1;
then in bl_CustomizerWeaponEditor.cs -> Transfer() -> replace these lines:

Code: Select all

clone.transform.localPosition = data[0];
            clone.transform.localEulerAngles = data[1];
            clone.transform.localScale = data[2
with these:

Code: Select all

clone.transform.localPosition = data[0] * _CustomizerWeapon.Positions.transferSizeMultiplier;
            clone.transform.localEulerAngles = data[1];
            clone.transform.localScale = data[2] * _CustomizerWeapon.Positions.transferSizeMultiplier;
Replace:

Code: Select all

 clone.transform.parent = networkTarget;
                clone.transform.localPosition = data[0];
                clone.transform.localEulerAngles = data[1];
                clone.transform.localScale = data[2
With these:

Code: Select all

 clone.transform.parent = networkTarget;
                clone.transform.localPosition = data[0] * _CustomizerWeapon.Positions.transferSizeMultiplier;
                clone.transform.localEulerAngles = data[1];
                clone.transform.localScale = data[2] * _CustomizerWeapon.Positions.transferSizeMultiplier;
Finally, in the Customizer scene, select the SMG customizer instance under: CustomizerManager -> Root -> SMG, -> bl_Customizer -> Positions -> Set the "Transfer Size Multiplier" to 0.1,
then transfer the attachments again and it should setup the attachments correctly.

Image

Re: Customizer Addon Errors.

Posted: Sat Oct 16, 2021 3:56 am
by pyatyorochka
Hello! Thanks, it helped. But there is still a problem that I showed in the video above, as well as in the video below:
https://youtu.be/sBjUwMq9ohM
The shotgun and pistol have incorrect attachments, and the pistol's magazine is also duplicated.
What i have to do?

Re: Customizer Addon Errors.

Posted: Sun Oct 17, 2021 1:25 am
by Lovatto
The attachments have not been transferred correctly, which version of Customizer are you using?
Have you follow the documentation? MFPS -> Tutorials -> Customizer -> Setup Players?
Do you get any logs when transfer the attachments?