File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11var CHECKSUM = {
2- build : 'a530be80-7bbd -11e7-ba08-d1f8f66bd7c0 '
2+ build : 'b28c18c0-7cff -11e7-b7e1-779245c06136 '
33} ;
44module . exports = CHECKSUM ;
Original file line number Diff line number Diff line change 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+
321module . exports = [
422 'completeDelay' ,
523 'delay' ,
You can’t perform that action at this time.
0 commit comments