diff options
author | Saivan <savian@me.com> | 2018-05-15 15:03:28 +1000 |
---|---|---|
committer | Saivan <savian@me.com> | 2018-05-15 15:03:28 +1000 |
commit | 685d53295dd005c6f513b6123d8cd3fb3e671c8a (patch) | |
tree | dd764c50642f0a10d054bee862aa7698c8a10dcc /gulpfile.js | |
parent | 8b80921347cc1c183d00f442877453aad22ff672 (diff) | |
download | svg.js-685d53295dd005c6f513b6123d8cd3fb3e671c8a.tar.gz svg.js-685d53295dd005c6f513b6123d8cd3fb3e671c8a.zip |
The timeline is now decoupled from the real time
This commit allows the timeline to exist independently of the actual
time. This will allow it to be used to seek through an animation
with relative ease. We also made some architectural changes to the
timeline to support this.
Changes
=======
- Refactored the runner into its own file without exposing it to the
user (changed the gulpfile)
- The timeline no longer depends on the current time
- The user can supply absolute times to queue events
- Some more methods have been integrated into the timeline
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js index 5883790..7f22df3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -82,6 +82,13 @@ var parts = [ 'src/boxes.js',
'src/parser.js',
'src/animator.js',
+ //
+ //
+ //
+ // TODO: ADD THESE
+ //
+ // 'src/runner.js'
+ // 'src/timeline.js'
]
gulp.task('clean', function () {
|