From 9c92fa395d1e93d92c4aba2df24a37016650dcf9 Mon Sep 17 00:00:00 2001 From: chrisgregan Date: Wed, 23 Apr 2014 12:34:33 +0100 Subject: [PATCH] Tuned parallax default values Zero vertical parallax by default. --- Assets/Fungus/Scripts/Parallax.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Scripts/Parallax.cs b/Assets/Fungus/Scripts/Parallax.cs index 056f1e0b..7fa703f2 100644 --- a/Assets/Fungus/Scripts/Parallax.cs +++ b/Assets/Fungus/Scripts/Parallax.cs @@ -12,7 +12,7 @@ namespace Fungus /** * Scale factor for calculating the parallax offset. */ - public Vector2 parallaxScale = new Vector2(0.1f, 0.1f); + public Vector2 parallaxScale = new Vector2(0.25f, 0f); Vector3 startPosition;