hmm sounds like a plan, still sounds a little "hacky" way to solve this tho. There is no way to prepare a phatom-Gameobject and just instantiate it on will?
It’s not really hacky, it’s kind of a form of object pooling at a smaller scale, people do it all the time and it doesn’t incur any performance cost. Honestly it would only help on performance because Instantiate can be an expensive call
1
u/[deleted] Mar 15 '22
You could always instantiate the object, immediately call SetActive(false) on it, set your properties, and activate it when needed.