3

I am porting an existing game from iOS to Android, and would like to know if there's a size limit for PNG images? On old iOS devices, the texture atlas size cannot exceed 1024 x 1024 pixels. Does a similar limitation exist for Android devices?

Thanks.

dda
  • 6,030
  • 2
  • 25
  • 34
tomas
  • 91
  • 1
  • 7

2 Answers2

5

In android you can use atlas bigger, but I recommend to you use only sizes based on 2; 1024 x 1024; 2048 x 2048, etc. Sometimes Android fail when use custom sizes.

vgonisanz
  • 11,831
  • 13
  • 78
  • 130
2

No, the only limit is the device's RAM being used.

Alex Timonin
  • 1,872
  • 18
  • 31