"BATCHFEW HAS BEEN DEPRECATED FROM THE ASSET STORE AND WILL NO LONGER BE SOLD AS A SEPARATE PRODUCT. BATCHFEW WILL NOW ONLY EXIST AS AN INTEGRATED PART OF POLYFEW. IF YOU WANT TO USE BATCHFEW PLEASE PURCHASE POLYFEW. PLEASE NOTE THAT THIS THREAD MIGHT AS WELL BE DELETED IN THE NEAR FUTURE. "
One of the elements that negatively effects the performance of a 3d application is frequent communication between the GPU and the CPU. To keep your games running smooth you need to keep this communication less frequent. There are two main factors that increase this communication.
Draw Calls: A draw call is a call to the GPU to draw objects. A lot of meshes that use different materials, all cannot be sent to the GPU in a single draw call to be rendered. Thus they cause a lot of draw calls. One way around this problem is to combine several meshes together, ultimately lowering their count.
SetPass Calls: Draw call sets up a mesh and submits it for rendering, whereas a SetPass call is when all the data from a material for rendering a mesh is setup. Each time a material is changed, it results in a new SetPass call. So to lower this number you can combine/merge materials to keep their count low.
In short If you have a complex scene containing a lot of 3d models with a lot of meshes that use a lot of different materials, the overall performance of your game will suffer. Batch few is a Mesh combining and Material merging solution for unity that aims to solve this problem by allowing you to optimize high quality complex 3d scenes by lowering DrawCalls and SetPass calls with a few clicks and, without the need of writing even a single line of code. Mesh and material combining are especially useful when developing for resource constrained platforms like mobile phones or other low end devices. This can also help eliminate your expenses for artists.
If youâre looking for a complete optimization package that does this and much more, check out Poly Few
Supported features:
â Mesh combining and Material combining in one package.
â Supports combining both Static and Skinned meshes. Even supports combining rigged Skinned meshes and or Skinned meshes with blendshape/morph animations.
â Combine materials using Texture Arrays. Only supports the Standard Shader (Specular and Non Specular setup).
â Texture Array based material combiner doesnât suffer with the common problems of texture atlases like texture bleeding, resolution limitation and no tiled texture support.
â Allows adjusting individual material properties even after combining materials together.
â Packs everything in a convenient inspector window that pops up right under the components hierarchy.
â No coding knowledge is required. Use the full features of the tool in editor mode without writing even a single line of code.
â All the source code is included without encapsulation using dll files or any other means.
â Includes editor tooltips for every control to ease understanding and usage of the tool.
Check out the video:
_https://www.youtube.com/watch?v=wjSYpydThsw**_
Screenshots:
__
**__