- Home /
Question by
ANOONBP · Oct 30, 2018 at 02:47 PM ·
prefabperformanceempty
Instantiate prefab vs Instantiate empty object and then add the exact same component to it.
Which one has a better performance between instantiate an prefab or just new GameObject then add the exact component with prefab to it using script ?
PS. sorry for my bad English.
Comment
Best Answer
Answer by hexagonius · Oct 30, 2018 at 04:26 PM
the second because there's no need to parse the prefab serialized values. All other steps are necessary on both cases.