You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extracts the contents of a Unity package file (.unitypackage).
4
+
5
+
I found that [existing python tool](https://github.com/Cobertos/unitypackage_extractor) for this task couldn't
6
+
handle large package files in a reasonable time. This tool should be able to quickly handle packages of essentially unlimited size
7
+
(caveat: I've only tested up to 8GB).
8
+
9
+
## Requirements
10
+
11
+
The release binary is Windows 10+, 64-bit only. (Other platforms should work if you compile from source.)
12
+
13
+
## Usage
14
+
15
+
* Download [UnityPackageExtractor.zip](/paulbartrum/UnityPackageExtractor/releases/latest) from the Releases tab.
16
+
* Extract into a new directory
17
+
* Drag and drop your `.unitypackage` onto `UnityPackageExtractor.exe` (this will output into the same directory as your package file) OR
18
+
* Run from the command line with `UnityPackageExtractor.exe [path/to/your/package.unitypackage] (optional/output/path)`
19
+
20
+
Note: Unity packages should first be downloaded using the package manager inside Unity.
21
+
The .unitypackage file should then be available under the package cache directory (which as of this writing is: `%APPDATA%\Roaming\Unity\Asset Store-5.x`).
0 commit comments