aboutsummaryrefslogtreecommitdiffstats
path: root/src/timeline.js
Commit message (Collapse)AuthorAgeFilesLines
* Rename files so that they reflect their exported classes (see next commit)Ulrich-Matthias Schäfer2018-10-251-282/+0
|
* add babel, satisfy linter, build distUlrich-Matthias Schäfer2018-10-171-51/+40
|
* fix timeline timing with runnersUlrich-Matthias Schäfer2018-10-131-11/+13
|
* fix schedule so it uses runnertime correctlyUlrich-Matthias Schäfer2018-10-101-12/+27
|
* Found and started fixing an error with the Timeline.schedule functionSaivan2018-09-101-1/+0
| | | | This commit finds an error in the scheduling duration that we need to fix.
* Runners now work with absolute and relative transformationsSaivan2018-06-231-2/+1
| | | | | | This commit finally gets transformations workin in both absolute and relative mode. This is the last **major** hurdle for the new animation module, so we just need to clean it up and fix some bugs 🐞
* replace runner set with array and order array for faster access and saving ↵Ulrich-Matthias Schäfer2018-06-031-46/+54
| | | | of start time
* transformation works now for ONE element. More work requiredUlrich-Matthias Schäfer2018-06-031-1/+0
|
* Began implementing the transformation functionsSaivan2018-06-021-4/+1
|
* The timelines continue function requests a step animation frameSaivan2018-06-011-1/+6
|
* implements Set for runners in timelineUlrich-Matthias Schäfer2018-05-311-43/+39
|
* worked a bit on timeline, build example, found bug which needs a fixUlrich-Matthias Schäfer2018-05-301-20/+50
|
* The runners step was reimplemented with testsSaivan2018-05-311-0/+1
|
* Looping is now working and code is generally cleanerSaivan2018-05-291-30/+18
|
* Diagnosing the declarative animations and suggesting changesSaivan2018-05-291-33/+43
|
* implement methods, reorganize runner, list questionsUlrich-Matthias Schäfer2018-05-291-158/+72
|
* Started planning the way events work and got Spring workingSaivan2018-05-281-93/+95
|
* Fixed all of the low hanging problems so declarative worksSaivan2018-05-261-4/+3
|
* fixed some more errores, make declaritive controllers partially work. added ↵Ulrich-Matthias Schäfer2018-05-241-37/+2
| | | | PID controller for testing reasons
* fix runner and timeline so that it schedules animations correctlyUlrich-Matthias Schäfer2018-05-241-1/+1
|
* Stuff is moving again after fixing several stuffUlrich-Matthias Schäfer2018-05-241-39/+95
|
* Should be the final redesignSaivan2018-05-241-336/+26
|
* Added a few more use cases and suchSaivan2018-05-221-42/+40
|\
* | Most of the animations are workingSaivan2018-05-171-14/+51
|/
* fixed morphing. Changed easing function so that it can handle stringsUlrich-Matthias Schäfer2018-05-151-1/+5
| | | | | | - error in Matrix constructor which ignores translateX (and more?) - generelized all morphable objects so that they behave logical - SVG.Morphable can handle all datatypes now
* The timeline is now decoupled from the real timeSaivan2018-05-151-124/+78
| | | | | | | | | | | | | | | 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
* make morphing work, fix inheritance, animations now workUlrich-Matthias Schäfer2018-05-011-24/+36
|
* More work on the timeline and morphablesSaivan2018-05-011-76/+358
|
* The animations work with the .queue methodSaivan2018-05-011-28/+60
|
* Another collaboration session with @FuzzymaSaivan2018-04-301-89/+131
|
* Added some timeline and Morphing functionsSaivan2018-04-231-44/+130
|
* Initial planning for the Timeline ModuleSaivan2018-04-181-0/+171
This commit just includes a few plans and a massive derrangement of the fx module before it is to be refactored into the Timeline module. The basic methods are included, but everything is broken