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.
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; }