fixed movieclip speed/fps bug. fixes #35

This commit is contained in:
logsol 2015-02-07 15:37:40 +01:00
parent 5caa21f453
commit 93680e3286
9 changed files with 60 additions and 29 deletions

View file

@ -96,6 +96,7 @@ function (Parent, PIXI, ColorRangeReplaceFilter, Settings) {
if (options.visible === true || options.visible === false) mesh.visible = options.visible;
if (options.pivot) mesh.pivot = new PIXI.Point(options.pivot.x, options.pivot.y);
if (options.anchor) mesh.anchor = options.anchor;
if (options.animationSpeed) mesh.animationSpeed = options.animationSpeed;
};
Layer.prototype.addFilter = function(mesh, filterName, options) {