You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](http://sole.github.com/tween.js/examples/06_video_and_time.html)
@@ -20,7 +20,7 @@ We are still developing this so the API might change from commit to commit.
Download the [minified library](http://github.com/sole/tween.js/raw/master/build/Tween.js) and include it in your html.
36
36
@@ -70,24 +70,31 @@ Have a look at that folder to discover more functionalities of the library!
70
70
71
71
Also, Jerome Etienne has written a [tutorial](http://learningthreejs.com/blog/2011/08/17/tweenjs-for-smooth-animation/) demonstrating how to use tween.js with three.js, and it's also great for understanding how tweens work!
72
72
73
-
##Frequently Asked Questions (FAQ)##
73
+
### FAQ ###
74
74
75
-
**Is there a way to control when is update() called? I'd like to use my own interval.**
76
-
77
-
Yes, simply don't call `TWEEN.start()`, and run `TWEEN.update()` in your own periodically executing function instead.
78
-
79
75
**How do you set a tween to start after a while?**
80
76
81
-
Use the `delay()` method: `var t = new Tween({...}).delay(1000);`
77
+
Use the `delay()` method: `var t = new TWEEN.Tween({...}).delay(1000);`
82
78
83
79
**Is there a jQuery plug-in?**
84
80
85
81
No, we like to keep it simple and free of dependencies. Feel free to make one yourself, though! :-)
86
82
87
83
88
-
## Change log ##
84
+
### Change log ###
85
+
86
+
2012 04 10 - **r6** (4,707 KB, gzip: 1,630 KB)
87
+
88
+
* Returning instance also in `.chain()`. ([mrdoob](http://github.com/mrdoob))
89
+
* Refactoring and code clean up. ([egraether](http://github.com/egraether))
* Renamed `EaseNone`, `EaseIn`, `EaseOut` ane `EaseInOut`, to `None`, `In`, `Out` and `InOut`. ([mrdoob](http://github.com/mrdoob))
94
+
* Made `.to()` values dynamic. ([egraether](http://github.com/egraether) and [jeromeetienne](http://github.com/jeromeetienne))
89
95
90
-
2011 10 15 - **r5**
96
+
97
+
2011 10 15 - **r5** (4,733 KB, gzip: 1,379 KB)
91
98
92
99
* Add autostart/stop functionalities ([jocafa](http://github.com/jocafa) and [sole](http://github.com/sole))
93
100
* Add 07_autostart example demonstrating the new functionalities ([sole](http://github.com/sole))
@@ -97,22 +104,19 @@ No, we like to keep it simple and free of dependencies. Feel free to make one yo
97
104
98
105
* Use ``Date.now()`` instead of ``new Date.getTime()`` as it's faster ([mrdoob](http://github.com/mrdoob))
99
106
107
+
100
108
2011 09 30 - **r3**
101
109
102
110
* Added new ``time`` parameter to TWEEN.update, in order to allow synchronizing the tweens to an external timeline ([lechecacharro](http://github.com/lechecacharro))
103
111
* Added example to demonstrate the new synchronizing feature. ([sole](http://github.com/sole))
104
112
113
+
105
114
2011 06 18 - **r2**
106
115
107
116
* Added new utility methods getAll and removeAll for getting and removing all tweens ([Paul Lewis](http://github.com/paullewis))
108
117
118
+
109
119
2011 05 18 - **r1**
110
120
111
121
* Started using revision numbers in the build file
112
122
* Consider this kind of an stable revision :-)
113
-
114
-
## Contributors ##
115
-
116
-
People who have contributed directly or indirectly to this project :-D
0 commit comments