Death Racer

VR Car Survival Game

Death Racer is a Virtual Reality first-person car game. The player drives around town and slams into monsters and tries to avoid hitting the civilians. Use speed and skillful car handling for higher scoring.

  • Immersive VR car driving experience
  • Supported on both Oculus Quest and Oculus Rift
  • Tools: Unity, C#, Oculus Integration Package
  • Download a demo of the game here: Death Racer Demo

Video Demonstration:



Screenshots:









Code Sample:

{ // falling                                 
    if (!character.isGrounded) 
    { 
        fallVelocity -= .08f; // keep adding more fallVelocity 
    }
    moveDirection.y += fallVelocity; //Fall velocity has to be a negative number
    RocketSound.Stop();
    GetComponent<OVRPlayerController>().Acceleration = 0.2f;
}