I'm using ngui 3.0.8 f1.
Sorry for that I don't know how to insert pictures in my text using my attachments
1、
I used a bitmap font in some labels but i find it have something wrong.
see:bitmap_font_1.jpg
see:bitmap_font_2.jpg
Words are not positioned the same in y axis in my pc.
But I found they are positioned right in mac .
see:bitmap_font_right.png
2、
My map are makd up of 5 * 8 grids.Every grid is 40 * 40 size.
I position them like this:
for (int row = 0; row < 5; row++)
{
for (int col = 0; col < 8; col++)
{
//generate grids
grid
.transform.localPosition = new Vector3
(startX
+ 40 * row , startY
+ 40 * col ,
0); }
}
In some resolution or pc(I'm not sure which affects) , It displayed well.
see:no_gap.jpg
But sometimes it displayed with gaps:
see:gap.jpg
3、
I used a sliced sprite in my game
see:sliced.jpg
But sometimes it displayed with some distortions at the edge of the sprite
see:distorted.jpg
sometimes it displayed well
see:no_distorted.jpg