phaser/v3/src/tween/Tween.js
2017-05-09 20:36:29 +01:00

47 lines
772 B
JavaScript

var GetValue = require('../utils/object/GetValue');
var TweenData = require('./TweenData');
var Tween = function (manager)
{
this.manager = manager;
this.targets;
this.ease;
this.yoyo;
this.repeat;
this.loop; // same as repeat -1 (if set, overrides repeat value)
this.paused;
this.onStart;
this.onStartScope;
this.onStartParams;
this.onUpdate;
this.onUpdateScope;
this.onUpdateParams;
this.onRepeat;
this.onRepeatScope;
this.onRepeatParams;
this.onComplete;
this.onCompleteScope;
this.onCompleteParams;
this.callbackScope;
this.useFrames = false;
};
Tween.prototype.constructor = Tween;
Tween.prototype = {
timeScale: function ()
{
},
};
module.exports = Tween;