Skip to content
This repository has been archived by the owner on Jun 12, 2022. It is now read-only.

Commit

Permalink
camera tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
TiagoJeronimo committed Nov 12, 2016
1 parent 2ddf533 commit 11f5aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/CameraController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void FixedUpdate() {
carDirection = 1;
}
else {
carDirection = System.Math.Max(1, target.GetComponent<CarController>().carMovementDirection * -0.1);
carDirection = System.Math.Max(1, target.GetComponent<CarController>().carMovementDirection * -0.05);
}
} else {
if (carDirection < 0) {
Expand Down

0 comments on commit 11f5aef

Please sign in to comment.