C#中将byte[]转为Texture2D

    public static Texture2D BytesToTexture2D(byte[] bytes, int w = 1920, int h = 1080)
    {
        Texture2D texture2D = new Texture2D(w, h);
        texture2D.LoadImage(bytes);
        return texture2D;
    }
原文地址:https://www.cnblogs.com/ezhar/p/13651312.html