From 8cdab8b4350508e5f1b1f0563886a8b30fdc8019 Mon Sep 17 00:00:00 2001
From: Tony Tung <ytung@mozilla.com>
Date: Wed, 8 Aug 2018 10:33:48 -0700
Subject: [PATCH] removed unused var.

---
 src/systems/tunnel-effect.js | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/systems/tunnel-effect.js b/src/systems/tunnel-effect.js
index 77592b86f..1de2ef57b 100644
--- a/src/systems/tunnel-effect.js
+++ b/src/systems/tunnel-effect.js
@@ -24,7 +24,6 @@ AFRAME.registerSystem("tunneleffect", {
     this.isMoving = false;
     this.isVR = false;
     this.dt = 0;
-    this.t = 0;
     this.radius = data.radius;
     this.minRadius = data.minRadius;
     this.softness = data.softness;
@@ -53,7 +52,6 @@ AFRAME.registerSystem("tunneleffect", {
   },
 
   tick: function(time, deltaTime) {
-    this.t = time;
     this.dt = deltaTime;
 
     if (!this._isPostProcessingReady() || !this.isVR) {
-- 
GitLab