Hi!
We're using reference atlases to adjust our UI for SD and retina displays. The HD atlas has a pixel size of 0.5. In theory, we'd expect that switching everything to HD would just require us to switch out the atlas that the reference atlas points to - but as many of our sprites have padding, everything looks wonky when we switch to HD.
The way I see it, our problem is that a sprite's padding doesn't take the atlas' pixel size into account (whereas its border does that). Is this intended behaviour? Changing the UISprite class to multiply paddings by pixelSize fixes our problem, but I'd rather know if I'm missing something obvious, before I make changes that break with every NGUI update.