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;
    }
posted @ 2020-09-11 13:48  艾孜尔江  阅读(1077)  评论(0编辑  收藏  举报