- Home /
Texturing Large Objects
I'm currently working on a space sim game where you fly from the perspective of a small fighter and I want to have some absolutely massive space stations and capital ships. My question has to do with texturing these behemoths as tiling textures may not achieve what I need in some scenarios (if that'd even be possible without killing performance).
What in your opinion would be the best way to go about this? Create a mesh with lots of materials (tiled or UV when necessary) or creating huge UV maps? My problem with the UV maps is that they get blurry as the ship gets bigger (likely due to being scaled down to 1024) or perhaps I'm just doing something wrong?
Any help on this would be greatly appreciated!
Tiling textures has no effect on performance. Also, you're not limited to 1024 for texture sizes (except on old iOS devices).
Really now? So what might you consider overkill or "max" texture size template for UV maps?
It depends on the graphics hardware, though Unity currently doesn't allow for more than 4096x4096. $$anonymous$$eep in $$anonymous$$d that's a large amount of VRA$$anonymous$$ (~85$$anonymous$$B assu$$anonymous$$g DXT1 and mipmaps).
Right, well thank you very much I definitely appreciate your response. One more question, does it affect performance to have one mesh with lots of materials on it?
Yes, each material is another draw call. It's basically the same (as far as performance goes) as having multiple separate meshes with different materials. But that's not likely to be an issue since I doubt you'd have lots of huge stations and capital ships all in view at the same time.
Your answer
Follow this Question
Related Questions
Should I scale the player-ship in a space sim to 1 unit? 2 Answers
Performance: many materials vs. TextureMap 2 Answers
single texture atlas or multiple textures? 0 Answers
Changing scale of WebCamTexture 1 Answer
Resizing GUI textures 0 Answers