MC Chunk Combiner
Chunk combiner allow you to split meshes by it's position it allows you to reduce combine time on update because combine will work on smaller list of objects.
Please note that splitting working based on MC Combinable position, not mesh shape.
Configuration
The MC Chunk Combiner
implements all the options available in the standard MC Mesh Combiner
component and introduces one additional option: chunks
. That additional option in the MC Chunk Combiner provide enhanced control and flexibility for managing the combined meshes in a chunk-based manner.
Chunks
To leverage these new container types, utilize the chunks
property within the DMC configuration. The chunks
property enables users to define a list of containers. Meshes will be baked in the first valid chunk encountered.
List of available containers
Currently there is 3 types of containers, but you can define your own type, by creating new script and extending it from `AbstractChunkContainer`.
Grid Chunk Container:
Description: Traditional 2d chunk container where users can define chunk sizes for grouping meshes.
Use Case: Offers control over grouping meshes based on predefined chunk sizes.
Bounds Chunk Container:
Description: Users can define a bounding box, and objects within this bounds will be combined.
Use Case: Allows for custom grouping based on spatial boundaries.
Collider Chunk Container:
Description: Similar to the bounds container, but grouping is based on colliders of any type.
Use Case: Provides flexibility by allowing grouping based on colliders rather than explicit bounds.
You can find all of those containers under Mesh Combiner/Chunk
of Add Component
menu.