hi guys
my problem is when i import my psb file to unity 2d i become so blurry even my psb is 150 resolution but its so blurry and have very low resolution i tryed to make the filter mode Point but didnt work
What’s the exact resolution of the image?
Ah I see. Export it in chunks with the resolution being a multiple of 4.
Unity probably took the long side and decreased the resolution to 2048
you mean that i have to make the resolution 150*4? like 600??
3D game engines use GPUs to render stuff. Images end up as textures. GPU hardware has limits on texture sizes. You cannot just throw something like a 27296 x 1390 image in and expect a valid texture.
The maximum size is dependent upon the hardware the project is running on.
The pixels/inch is a photoshop or other graphics thing. It relates to display/printing and determines its “real world” size; it’s nothing to do with Unity.
No, like 16, 32, 64, 128 … 4096
Computer graphics use these texture sizes. Use a ratio of 1:1 per texture or maybe 1:2 (4096x4096 or 2048x4096)