VR Survival Game
This mini-game demonstrates basic proficiency with virtual reality game concepts. It's a fully playable zombie survival style game. It features game logic for the gun and shooting zombies, 3D model animation for running and falling, sounds effects and many other details commonly found in video game production. I created this in Unity using the Oculus Integration package for Oculus Rift S on Windows Platform. Zombies are coming after you - shoot them to SURVIVE!
Game Demo:
Screenshots:
Code Sample:
// Set isKinematic so that we can RagDoll the zombie void RagDoll (bool value) { var bodyParts = GetComponentsInChildren(); foreach (var bodyPart in bodyParts) { bodyPart.isKinematic = value; } }