Hello.
I am having trouble understanding the basics of Unity and draw call knowledge. At first I basically made one UIPanel every time I put a new UILabel some where. Then I saw in the Profiler that this caused one draw call per UILabel. Stupid I thought, and then went on to batch most of my UILabels into the same UIPanel as I would imagine was really as intended.
That worked fine and I got my ~117 draw calls from UIPanel down to ~10. But now all my UIPanels are doing the 117 draw calls from UIRect.Update()! Is this working as intended?
Is there a way to batch this like I did UIPanel?
Regards,