fullserializer icon indicating copy to clipboard operation
fullserializer copied to clipboard

Releases

Open toxicFork opened this issue 10 years ago • 4 comments

Hi, could we have a simple release file to download (preferably a unitypackage)? Also a Unity Asset store page, why not?

It will help the lazy people and spread the word!

toxicFork avatar Feb 06 '15 09:02 toxicFork

Ya, that would be optimal. I'll try to get an asset store package up in the future and add those releases to a special folder inside of this repo.

jacobdufault avatar Feb 07 '15 02:02 jacobdufault

Instead of inside a folder you can use the GitHub release system ;)

toxicFork avatar Feb 07 '15 11:02 toxicFork

Ah! Even better, ha.

jacobdufault avatar Feb 07 '15 20:02 jacobdufault

As an alternative, Git allows you to only checkout what you need via sparse checkout. Which is helpful if you wanna stay up to date with other people's code.

TO ADD (as a submodule):

git submodule add [email protected]:jacobdufault/fullserializer.git Assets/ThirdParty/FullSerializer
git submodule update --init --recursive --depth 1

TO CLONE (a project with this setup):

git clone <repo> <dirName>
cd <dirName>
git submodule update --init --recursive --depth 1

Only has to be done once (for CLONING and ADDING):

cd Assets/ThirdParty/FullSerializer/
git config core.sparsecheckout true
echo Source > ../../../.git/modules/Assets/ThirdParty/FullSerializer/info/sparse-checkout
git read-tree -mu HEAD

izackp avatar Feb 14 '15 17:02 izackp