From 18594955be22dd8d912223605859b6c306e10871 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Sat, 19 Aug 2017 15:19:54 -0400 Subject: [PATCH] Change default tweening function to overshoot --- js/proximity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/proximity.js b/js/proximity.js index f0bc809..b13a244 100644 --- a/js/proximity.js +++ b/js/proximity.js @@ -75,7 +75,7 @@ var tweeningSets = { // numbers refer to indicies into the allTweeningsFns array elastic: [19, 20, 21], back: [24] }; -var tweeningFns = tweeningSets.meandering; // the actual set of tweening functions points will randomly choose from +var tweeningFns = tweeningSets.back; // the actual set of tweening functions points will randomly choose from // click effect related config vars var clickPullRateStart = 0.01; // initial value for the ratio of a point's distance from the click position to travel in one cycle var clickPullRateInc = 0.005; // amount to increase clickPullRate every tick that a click is held