文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

unity3d 资源打包加密

2023-01-31 04:33

关注

资源打包脚本,放到Assets\Editor 文件夹下

using UnityEngine;

using System.Collections;

using UnityEditor;

using System.IO;


public class assetPack : Editor

{

[MenuItem("Custom Editor/Save Scene2")]

static void ExportResource()

{

// Bring up save panel

string path = EditorUtility.SaveFilePanel("Save Resource", "", "New Resource", "unity3d");

if (path.Length != 0)

{

// Build the resource file from the active selection.

Object[] selection = Selection.GetFiltered(typeof(Object), SelectionMode.DeepAssets);

BuildPipeline.BuildAssetBundle(Selection.activeObject, selection, path,

                              BuildAssetBundleOptions.CollectDependencies | BuildAssetBundleOptions.CompleteAssets);

Selection.objects = selection;

}

}

[MenuItem("Custom Editor/Make unity3d file to bytes file")]

static void ExportResourceNoTrackSS()

{

Object[] selection = Selection.GetFiltered(typeof(Object), SelectionMode.DeepAssets);

foreach(Object obj in selection)

{

string path1 = AssetDatabase.GetAssetPath(obj);

FileStream fs = new FileStream(path1, FileMode.Open, FileAccess.ReadWrite);

byte[] buff = new byte[fs.Length];

fs.Read(buff, 0, (int)fs.Length);

string password = "llh";

packXor(buff, buff.Length, password);

Debug.Log("filelength:" + buff.Length);

fs.Close();

string BinPath = path1.Substring(0, path1.LastIndexOf('.')) + ".bytes";

FileStream cfs = new FileStream(BinPath, FileMode.Create);

cfs.Write(buff, 0, buff.Length);

Debug.Log("filelength:" + buff.Length);

buff = null;

cfs.Close();

}

}

static void packXor(byte[] _data, int _len, string _pstr)

{

int length = _len;

int strCount = 0;

for (int i = 0; i < length; ++i)

{

if (strCount >= _pstr.Length)

strCount = 0;

_data[i] ^= (byte)_pstr[strCount++];

}

}

}

菜单上就会出现两个子菜单, 把要打包的资源做成Prefab,选中资源,然后菜单Custom Editor/Save Scene2  输入名字新生成的文件,再选中新生成的文件,点击菜单Custom Editor/Make unity3d file to bytes file   输入名字

又生成了一个文件,再点击这个文件,菜单Custom Editor/Save Scene2  ,这样就打包加密好了

即打包AssetBundle之后加密再重新打包AssetBundle(能否直接加密打包?显然是不行的,加载资源时,LoadBundle会通过解密之后的字节重新创建AssetBundle,所以必须先打包出AssetBundle)


加载打包资源

using UnityEngine;

using System.Collections;


public class loadnew : MonoBehaviour

{

public string filename = "My Resource";

private string BundleURL;

private string AssetName;

void Start()

{

//StartCoroutine(loadScenee());

StartCoroutine(LoadResource());

}

IEnumerator loadScenee()

{

string path;

path = "file://" + Application.dataPath + "/" + filename + ".unity3d";

Debug.Log(path);

WWW www = new WWW(path);

yield return www;

AssetBundle bundle = www.assetBundle;

//GameObject go = bundle.Load("gCube",typeof(GameObject)) as GameObject;

GameObject ObjScene = Instantiate(www.assetBundle.mainAsset) as GameObject;

bundle.Unload(false);

}

IEnumerator LoadResource()

{

BundleURL = "file://" + Application.dataPath + "/" + filename + ".unity3d";

Debug.Log("path:" + BundleURL);

WWW m_Download = new WWW(BundleURL);

yield return m_Download;

if (m_Download.error != null)

{

//   Debug.LogError(m_Download.error);

Debug.LogError("Warning errow: " + "NewScene");

yield break;

}

TextAsset txt = m_Download.assetBundle.Load(filename, typeof(TextAsset)) as TextAsset;

byte[] data = txt.bytes;

byte[] decryptedData = Decryption(data);

Debug.Log("decryptedData length:" + decryptedData.Length);

StartCoroutine(LoadBundle(decryptedData));

}

IEnumerator LoadBundle(byte[] decryptedData)

{

AssetBundleCreateRequest acr = AssetBundle.CreateFromMemory(decryptedData);

yield return acr;

AssetBundle bundle = acr.assetBundle;

GameObject obj =  (GameObject)Instantiate(bundle.mainAsset);

//obj.SetActive (true);

}

byte[] Decryption(byte[] data)

{

byte[] tmp = new byte[data.Length];

for (int i = 0; i < data.Length; i++)

{

tmp[i] = data[i];

}

//   shanghaichaolan

string password ="llh";

packXor(tmp,tmp.Length,password);

return tmp;

}

static void packXor(byte[] _data, int _len, string _pstr)

{

int length = _len;

int strCount = 0;

for (int i = 0; i < length; ++i)

{

if (strCount >= _pstr.Length)

strCount = 0;

_data[i] ^= (byte)_pstr[strCount++];

}

}

void update()

{

}

}



阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯