Missing texture on weapon/item creation

m3nth0l

New member
Lately when creating weapons/item pickups my mats have gone missing after the prefab is created. It's no big deal to fix, but I'd rather just have to do it once because lazy :) Running 2018.3.7f1 with latest TPC from the asset store. Any ideas?
 

Attachments

  • missing_mats.jpg
    missing_mats.jpg
    24.5 KB · Views: 0
Thanks for letting me know. Within ItemBuilder.cs change line 154 to:

Code:
                                    !addFirstPersonPerspective || firstPersonObject != null || firstPersonVisibleItem != null);

I added the !addFirstPersonPerspective condition.
 
Top