Clone Unity Survival Shooter Project
The starting point for the Survival Game project: Unity’s Survival Shooter tutorial game with all audio removed. A player fights waves of three enemies (ZomBear, ZomBunny, Hellephant) with raycast shooting, health, and scoring. Everything works — it’s just silent. Fork it, clone it, and confirm it runs before the FMOD work begins.
Requirements
- GitHub Desktop (desktop.github.com)
- Unity 6 version 6000.3.7f1 (must match exactly)
Getting Started
1. Fork the Repository
- Go to github.com/danielrdehaan/unity-survival-shooter
- Click the Fork button in the top-right corner
- Select your own GitHub account as the destination
- This creates your own copy of the project that you can modify freely
2. Clone Your Fork with GitHub Desktop
- On your fork’s GitHub page, click the green Code button
- Select Open with GitHub Desktop
- In GitHub Desktop, choose where to save the project on your computer and click Clone
3. Install Unity 6000.3.7f1
- Open Unity Hub
- Go to Installs and check if version 6000.3.7f1 is listed
- If not, click Install Editor, find 6000.3.7f1 under Unity 6 releases, and install it
- If you cannot find the exact version in the Hub, use the Unity Archive to locate the install link for 6000.3.7f1
⚠️ Warning
Use this exact version. Opening the project with a different Unity version can cause import errors or unexpected behavior.
4. Open the Project
- In Unity Hub, click Open (or Add project from disk)
- Navigate to the cloned
unity-survival-shooterfolder and select it - Make sure Unity Hub selects editor version 6000.3.7f1 for this project
- Wait for the project to import (first open may take a few minutes)
5. Open the Game Scene
- In the Project window, navigate to
Assets/_CompletedAssets/Scenes/ - Double-click Complete-Game to open it
- Press Play to verify the game runs — enemies spawn and shooting works, just with no sound
6. Create an Event List
- Play the game with a spreadsheet open and list everything that needs a sound or music — every player action, each enemy’s states, the UI, the music states. This list becomes your FMOD event list; compare it against the one in the project brief when you’re done.
Next
- FMOD Survival Shooter Unity Integration — the step-by-step integration, starting from this project
- Unity + FMOD: The Survival Game — the brief, event list, and evaluation