Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.09 KB

README.md

File metadata and controls

54 lines (34 loc) · 1.09 KB

UniZip

UniZip is zipper for unity3d.

unity zip

Getting Started

Copy all items from the Assets/Plugins folder to your Unity3d Assets/Plugins folder.

supported

  • iOS.
  • Android.
  • Standalone(Includes Mac and Windows)

example

unzip

string zipfilePath = Application.temporaryCachePath + "/args.zip";
string exportLocation = Application.temporaryCachePath + "/dir";

ZipUtil.Unzip(zipfilePath, exportLocation);

zip

string exportZip = Application.temporaryCachePath + "/args.zip";
string[] files = new string[] { Application.dataPath + "/Example/Resources/args.txt" };

ZipUtil.Zip(exportZip, files);

TODO

  • Support async zip/unzip
  • Inform progress while async job
  • Inform result
  • Support password
  • Submit assetstore
  • Directory support
  • Support unityhub distribution

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments