Skip to content

Commit 2be710c

Browse files
committed
Added comments
1 parent 92b0522 commit 2be710c

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

v3/src/checksum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
var CHECKSUM = {
2-
build: 'a530be80-7bbd-11e7-ba08-d1f8f66bd7c0'
2+
build: 'b28c18c0-7cff-11e7-b7e1-779245c06136'
33
};
44
module.exports = CHECKSUM;

v3/src/tween/ReservedProps.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
// RESERVED properties that a Tween config object uses
22

3+
// completeDelay: The time the tween will wait before the onComplete event is dispatched once it has completed
4+
// delay: The time the tween will wait before it first starts
5+
// duration: The duration of the tween
6+
// ease: The ease function used by the tween
7+
// easeParams: The parameters to go with the ease function (if any)
8+
// hold: The time the tween will pause before running a yoyo
9+
// loop: The time the tween will pause before starting either a yoyo or returning to the start for a repeat
10+
// loopDelay:
11+
// offset:
12+
// paused: Does the tween start in a paused state, or playing?
13+
// props: The properties being tweened by the tween
14+
// repeat: The number of times the tween will repeat itself (a value of 1 means the tween will play twice, as it repeated once)
15+
// repeatDelay: The time the tween will pause for before starting a repeat. The tween holds in the start state.
16+
// startAt:
17+
// targets: The targets the tween is updating.
18+
// useFrames: Use frames or milliseconds?
19+
// yoyo: boolean - Does the tween reverse itself (yoyo) when it reaches the end?
20+
321
module.exports = [
422
'completeDelay',
523
'delay',

0 commit comments

Comments
 (0)