public static Texture2D BytesToTexture2D(byte[] bytes, int w = 1920, int h = 1080)
{
Texture2D texture2D = new Texture2D(w, h);
texture2D.LoadImage(bytes);
return texture2D;
}
2021-10-31 07:01:39
public static Texture2D BytesToTexture2D(byte[] bytes, int w = 1920, int h = 1080)
{
Texture2D texture2D = new Texture2D(w, h);
texture2D.LoadImage(bytes);
return texture2D;
}