- Home /
performance when scaling/duplicating objects
Hi I'm an art person mainly, so sorry if this is basic, but: If I'm making a landscape and I duplicate, scale and stretch one rock asset many times, do the bigger ones (like a mountain in the background) take up the same amount of processing as the small ones? I would guess yes because the duplicates, no matter how big, would have the same amount of polygons and faces. So far everything looks good visually, I'm just worried I'm making basic performance errors and the game will be too bloated once I'm ready to ship. Maybe there is a good guide for performance optimization I could be referred too for general questions like this.
Thanks!
This is indeed because the poly-count increases, and other small aspects.
Try creating the rock as prefabs. and drag that out into the scene. $$anonymous$$ay help performance, certainly help asset bundle size upon game build. If this asset bundle is over 2gig the game wont build.
To help, try using LOD's to change the quality of the rock with distance from camera.
Cool good to know. I was starting to get a massive amount of rock assets. Ill try the prefab route.
Your answer
Follow this Question
Related Questions
Can I force unity to "weld" or "attach" a vertex of common faces, just like 3ds max? 1 Answer
what is more important for performance in Unity? UV count or the Vertice count 1 Answer
Code Performance: When to use "new" on Vector3 3 Answers
Reading Profiler Results 1 Answer
Help with Optimizing Voxel Code? 1 Answer