From c3f1976450a3034f3c90064c54a75b2bf4657d6a Mon Sep 17 00:00:00 2001 From: Tony Tung <ytung@mozilla.com> Date: Wed, 8 Aug 2018 15:19:12 -0700 Subject: [PATCH] renamed unit to ratio. --- src/systems/tunnel-effect.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/systems/tunnel-effect.js b/src/systems/tunnel-effect.js index 1fb0516ec..abfdf9bd6 100644 --- a/src/systems/tunnel-effect.js +++ b/src/systems/tunnel-effect.js @@ -76,8 +76,8 @@ AFRAME.registerSystem("tunneleffect", { this.deltaR = this.targetRadius - r; this.deltaS = softness - this.targetSoftness; } - const unit = this.dt / this.fadeTimeoutMs; - this._updateVignettePass(r + this.deltaR * unit, softness - this.deltaS * unit, this.opacity); + const ratio = this.dt / this.fadeTimeoutMs; + this._updateVignettePass(r + this.deltaR * ratio, softness - this.deltaS * ratio, this.opacity); } else { this._exitTunnel(); } -- GitLab