fullserializer
                                
                                 fullserializer copied to clipboard
                                
                                    fullserializer copied to clipboard
                            
                            
                            
                        Releases
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!
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.
Instead of inside a folder you can use the GitHub release system ;)
Ah! Even better, ha.
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