Skip to content

Commit 7d9eee5

Browse files
committed
Add screenshot to README
1 parent 940d121 commit 7d9eee5

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Demo/screenshot.gif

111 KB
Loading

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
# UnityPacker
22

3-
UnityPacker is a collection of a library and small command line tools that can create, unpack and inspect `UnityPackage` files without a Unity installation. It is great for automated builds of Unity tools.
3+
UnityPacker is a collection of a library and small command line tools that can create, unpack and inspect `UnityPackage` files without a Unity installation. It is great for automated builds of Unity tools.
4+
5+
![Screenshot](https://raw.githubusercontent.com/ogxd/unity-packer/master/Demo/screenshot.gif)
46

57
*Tested on Unity 2018.3 and 2019.1.0f2*
68

7-
> This repository was forked from [FatihBAKIR/UnityPacker](https://github.com/FatihBAKIR/UnityPacker) and refactored to fix path issues, usage and compatibility.
9+
> This repository was initially forked from [FatihBAKIR/UnityPacker](https://github.com/FatihBAKIR/UnityPacker) and then heavily refactored.
810
911
## How to create .unitypackage
1012

11-
./UnityPack mode=pack folder="" package="Samples" root="Assets/Plugins/Product/Samples" ignore="(Plugins\\.*|unitypackage|exe|exe|cmd)$"
13+
./UnityPacker mode=pack folder="." package="Samples" root="Assets/Plugins/Product/Samples" ignore="(Plugins\\.*|unitypackage|exe|exe|cmd)$"
1214

1315
This example will produce a `Samples.unitypackage` from the contents current directory recursively in the current directory.
1416

@@ -18,6 +20,6 @@ This example will produce a `Samples.unitypackage` from the contents current dir
1820
1921
## How to extract .unitypackage
2022

21-
.//UnityPacker mode=unpack package="Samples.unitypackage" destination="."
23+
./UnityPacker mode=unpack package="Samples.unitypackage" destination="."
2224

2325
This example will unpack the `Samples.unitypackage` to the working directory, with proper directory structure.

0 commit comments

Comments
 (0)