diff options
author | Saivan <savian@me.com> | 2018-06-02 01:59:10 +1000 |
---|---|---|
committer | Saivan <savian@me.com> | 2018-06-02 01:59:10 +1000 |
commit | 52a00f2e865ed7cd21e76877c77ea2afada7aea0 (patch) | |
tree | 5ccfbc5ce923b9684a6c33a36ee59ce59e0e8c72 /src/timeline.js | |
parent | 39cd3a29e2c8dc494a7cffa610c33f5b62995841 (diff) | |
download | svg.js-52a00f2e865ed7cd21e76877c77ea2afada7aea0.tar.gz svg.js-52a00f2e865ed7cd21e76877c77ea2afada7aea0.zip |
Began implementing the transformation functions
Diffstat (limited to 'src/timeline.js')
-rw-r--r-- | src/timeline.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/timeline.js b/src/timeline.js index 62d5021..eb2e56b 100644 --- a/src/timeline.js +++ b/src/timeline.js @@ -204,15 +204,12 @@ SVG.Timeline = SVG.invent({ var time = this._timeSource() var dtSource = time - this._lastSourceTime var dtTime = this._speed * dtSource + (this._time - this._lastStepTime) - this._lastSourceTime = time // Update the time this._time += dtTime this._lastStepTime = this._time - -console.log("hi", this._time); - this.fire('time', this._time) + // this.fire('time', this._time) // Run all of the runners directly var runnersLeft = false |