Tomcat
This sounds like a submodule and LFS problem. To fix it, be sure to clone the repository with submodules using: git@github.com:johnlogostini/NVGWGD_Demos.git --recurse-submodules This will pull everything.
However, if you’ve already cloned the repository, navigate into the repository folder and run git submodule update --init --recursive This will download everything.
The reason I use submodules is because:
- I would hit GitHub’s file size limit if I used one large repository, and
- Each demo is licensed differently, so separating them avoids any confusion around licenses.
If by chance you’re also having issues with Large File Storage (LFS), be sure to download and install it from the official page: https://git-lfs.com/
This should be installed by default with the Git installer on Linux and Windows, but if you disabled it or don’t have it installed, be sure to download it.
This is required because the Ivy asset is too large to commit directly to GitHub, so I used LFS. I may split the mesh in the future to avoid this, but I didn’t want to modify the demo in any major way.