fix: keep properly canvas batches

pull/225/head
mob-sakai 2022-06-11 23:08:27 +09:00
parent 01459b06b8
commit d8e96e69a6
1 changed files with 10 additions and 0 deletions

View File

@ -239,6 +239,16 @@ namespace Coffee.UIExtensions
{
s_CombineInstances[0].transform = canvasRenderer.transform.worldToLocalMatrix * GetWorldMatrix(psPos, scale);
workerMesh.CombineMeshes(s_CombineInstances, true, true);
workerMesh.RecalculateBounds();
var bounds = workerMesh.bounds;
var center = bounds.center;
center.z = 0;
bounds.center = center;
var extents = bounds.extents;
extents.z = 0;
bounds.extents = extents;
workerMesh.bounds = bounds;
}
Profiler.EndSample();