Prefab with pickup success

Is it possible to make a prefab that saves the On Pickup Success "Runtime Only" condition?

If it can not be done, is there another solution that you can lead me to? Again, thanks for all your help.
Item Pickup Attribute 01.pngItem Pickup Attribute 02.png
 
You cannor reference things in a scene from a prefab, that's just how unity works.
Instead you can write a custom script that sits on the prefab. This way you don't have to set the on pickup success each time. You just di it once in the prefab set the your custom component and then you set the reference of the object in the scene in that. It'll be 2-3 clicks less each time you set one up.

If you can think of a solution that requires no references to things in the scene even better
 
Top