From 11f5aef4698a2487012a71cbd5ef42afb4763bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Jer=C3=B3nimo=20Silva?= Date: Sat, 12 Nov 2016 19:43:04 +0100 Subject: [PATCH] camera tweaks --- Assets/Scripts/CameraController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/CameraController.cs b/Assets/Scripts/CameraController.cs index cffb6af..9b5af11 100644 --- a/Assets/Scripts/CameraController.cs +++ b/Assets/Scripts/CameraController.cs @@ -42,7 +42,7 @@ void FixedUpdate() { carDirection = 1; } else { - carDirection = System.Math.Max(1, target.GetComponent().carMovementDirection * -0.1); + carDirection = System.Math.Max(1, target.GetComponent().carMovementDirection * -0.05); } } else { if (carDirection < 0) {