mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 07:01:20 +00:00
Added todo.
This commit is contained in:
parent
9e018d956c
commit
8fbf20e2f3
1 changed files with 12 additions and 6 deletions
|
@ -71,16 +71,22 @@ Tween.prototype.constructor = Tween;
|
|||
|
||||
Tween.prototype = {
|
||||
|
||||
init: require('./components/Init'),
|
||||
play: require('./components/Play'),
|
||||
resetTweenData: require('./components/ResetTweenData'),
|
||||
update: require('./components/Update'),
|
||||
// TODO:
|
||||
//
|
||||
// Calculate total duration of this Tween, factoring in all TweenDatas and properties
|
||||
// Add progress for Tween duration
|
||||
// Only invoke loop, completeDelay, etc once all properties are completed
|
||||
|
||||
calcTargetsValue: require('./components/CalcTargetsValue'),
|
||||
resetTargetsValue: require('./components/ResetTargetsValue'),
|
||||
setEventCallback: require('./components/SetEventCallback'),
|
||||
init: require('./components/Init'),
|
||||
loadValues: require('./components/LoadValues'),
|
||||
nextTweenData: require('./components/NextTweenData'),
|
||||
play: require('./components/Play'),
|
||||
resetTargetsValue: require('./components/ResetTargetsValue'),
|
||||
resetTweenData: require('./components/ResetTweenData'),
|
||||
setCurrentTweenData: require('./components/SetCurrentTweenData'),
|
||||
setEventCallback: require('./components/SetEventCallback'),
|
||||
update: require('./components/Update')
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue