Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 833 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 833 Bytes

Full Inspector

Full Inspector supercharges the Unity inspector.

Checking out the code

Full Inspector relies on a sparse submodule checkout of Full Serializer, which makes settings up the repro locally slightly convoluted. Here is the recommended method:

$ # Standard git clone with submodule
$ git clone --recursive https://github.com/jacobdufault/FullInspector
$ cd FullInspector
$ # Setup sparse checkout
$ git config -f .git/modules/Assets/FullSerializer/config --add core.sparsecheckout true
$ echo Assets/FullSerializer/Source > .git/modules/Assets/FullSerializer/info/sparse-checkout 
$ # Remove any content from submodule that is not in the sparse checkout
$ rm -rf Assets/FullSerializer && git checkout Assets && git submodule update