- Home /
Objects or Meshes?
Hi, all! Just looking for some advice here...
I work in both Blender and Unity. That being said, I would like to know if it would be better to work with one giant mesh as opposed to separate objects
(For instance, the ship hull of a space ship being one object, and the gun being another).
I've been using separate objects, but things can get hairy REALLY quickly... So and advice here?
Answer by hathol · Jul 08, 2012 at 10:54 PM
I would go with separate objects.
Firstly because that will allow you to keep your code nicely separated. To stay with your example: A gun does not need to know about what type of ship it is attached to and how to move through space and a ship does not need to know the specifics of how to produce a projectile and fire at an enemy. Keeping it separate makes maintenance a LOT easier.
It will make your job easier from a modeling point of view, since you can change the look of the gun without having to worry (too much) about the rest of the ship. You also won't have to deal with nasty things like rigging and skinning if the guns are not attached to your object.
Having multiple objects will also help you with performance since unity can only cull on a per object basis. So if you have one giant mesh and see only the tip of it, unity will still have to process every single vertex within the mesh. If you keep your guns separate, unity will only render the guns that are actually visible.
Your answer
Follow this Question
Related Questions
Imported Blender Models Issue 1 Answer
How Can I Get The Pants to Not Move? 4 Answers
Anywhere to find animations? 0 Answers
Blender to unity, importing UV mapped image textures 1 Answer
A node in a childnode? 1 Answer