- Home /
Animal Crossing - Technical Question
How to display thousands of objects in Unity at the same time.
I would like to know if making a game like Animal Crossing in Unity would be possible.
In Animal Crossing you can have multiple objects (hundreds, even thousands, considering furniture, clothes, toys, etc.) placed on your island. Unless nintendo did a gigantic texture atlas, I guess every object would have its own mesh and texture, so in Unity we will end up with thousands of draw calls...
What are good approaches for this? The goal is to develop a game with the same number of objects in screen and targeting mobile (similar hardware to switch). I know about mesh baking, etc. but this doesn't seem a viable option to do it on runtime for mobile devices.
Any other ideas?
Answer by rhapen · Oct 26, 2020 at 07:48 PM
you can actually color most low poly objects from one material using the color map this guy is using it a lot in blender. he has also few unity tutorials. https://www.youtube.com/watch?v=BlxiCd0Upg4
But i dont know how animal Crossing is doing it :)
Your answer
Follow this Question
Related Questions
Mobile Material Optimization 0 Answers
The best way to have multiple models with only one material 2 Answers
What happen to unused mesh component? 0 Answers
Is it possible to set smoothness and metallic of a mesh per-vertex instead of the whole material? 0 Answers
Is it possible to calculate batch count of each material ? 0 Answers