Tanks tutorial from https://unity3d.com/learn/tutorials/projects/tanks-tutorial
Unity version 2021.3.5f1
Scripting Runtime Version: .NET 5.0
You need git-lfs to download this repo properly. See the section below.
Simply fork this repository and work on it. You are required to complete several tasks as stated in this handout. Copy it and fill it up, then export in .pdf
format to submit in eDimension. Due date can be found in eDimension.
Some of the files in this repo is very large. Github blocks pushes that are larger than 100MB. Therefore we used git Large File Storage instead. If you try to clone
this repository without git-lfs
installed, it will download only references to the file and not the actual file.
As such before cloning, you need to install git-lfs
command line extension (click here for info or search online). Then, you need to run the following command to setup Git LFS for your user account:
git lfs install
After you run the above command, you can then clone this repo accordingly with all the assets downloaded.
The above should sufficiently download ALL required files to your computer as local copy. You can test by opening 50033-tanks/Assets/Sprites/Aim Arrow.png
file and check that you can indeed open an arrow png file.
If you happened to have cloned this repo before installing git-lfs, and found that the files are still not downloaded even after you fetched, then the easiest thing to fix it is to:
- Delete your copy, then
- Install git lfs, then
- Run the
git lfs install
command and then clone
back this repo.