From a0dfede3ac0c148f6879d6acbc9c44f9c51f832f Mon Sep 17 00:00:00 2001 From: Chris Midkiff Date: Tue, 30 Oct 2018 19:07:52 -0400 Subject: [PATCH] fixed cardboard and started data entry --- Assets/Scripts/ExperimentController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/Scripts/ExperimentController.cs b/Assets/Scripts/ExperimentController.cs index d789b30..e3a1393 100644 --- a/Assets/Scripts/ExperimentController.cs +++ b/Assets/Scripts/ExperimentController.cs @@ -71,6 +71,7 @@ public class ExperimentController : MonoBehaviour { stopwatch.Stop(); double time = stopwatch.Elapsed.TotalSeconds; stopwatch.Reset(); + double angle = Vector3.Angle(nextDot.transform.position, playerCamera.transform.position); double arcDistance = angle * (float)(Math.PI / 180) * 10; Hide(nextDot);