@pixi/sprite-animated
Advanced tools
Comparing version 5.0.0-rc.2 to 5.0.0-rc.3
/*! | ||
* @pixi/sprite-animated - v5.0.0-rc.2 | ||
* Compiled Mon, 18 Feb 2019 23:45:28 UTC | ||
* @pixi/sprite-animated - v5.0.0-rc.3 | ||
* Compiled Fri, 22 Mar 2019 16:33:44 UTC | ||
* | ||
@@ -45,6 +45,6 @@ * @pixi/sprite-animated is licensed under the MIT License. | ||
*/ | ||
var AnimatedSprite = /*@__PURE__*/(function (Sprite$$1) { | ||
var AnimatedSprite = /*@__PURE__*/(function (Sprite) { | ||
function AnimatedSprite(textures, autoUpdate) | ||
{ | ||
Sprite$$1.call(this, textures[0] instanceof Texture ? textures[0] : textures[0].texture); | ||
Sprite.call(this, textures[0] instanceof Texture ? textures[0] : textures[0].texture); | ||
@@ -141,4 +141,4 @@ /** | ||
if ( Sprite$$1 ) AnimatedSprite.__proto__ = Sprite$$1; | ||
AnimatedSprite.prototype = Object.create( Sprite$$1 && Sprite$$1.prototype ); | ||
if ( Sprite ) AnimatedSprite.__proto__ = Sprite; | ||
AnimatedSprite.prototype = Object.create( Sprite && Sprite.prototype ); | ||
AnimatedSprite.prototype.constructor = AnimatedSprite; | ||
@@ -335,3 +335,3 @@ | ||
this.stop(); | ||
Sprite$$1.prototype.destroy.call(this, options); | ||
Sprite.prototype.destroy.call(this, options); | ||
@@ -338,0 +338,0 @@ this.onComplete = null; |
/*! | ||
* @pixi/sprite-animated - v5.0.0-rc.2 | ||
* Compiled Mon, 18 Feb 2019 23:45:28 UTC | ||
* @pixi/sprite-animated - v5.0.0-rc.3 | ||
* Compiled Fri, 22 Mar 2019 16:33:44 UTC | ||
* | ||
@@ -5,0 +5,0 @@ * @pixi/sprite-animated is licensed under the MIT License. |
{ | ||
"name": "@pixi/sprite-animated", | ||
"version": "5.0.0-rc.2", | ||
"version": "5.0.0-rc.3", | ||
"main": "lib/sprite-animated.js", | ||
"module": "lib/sprite-animated.es.js", | ||
"bundle": "dist/sprite-animated.js", | ||
"description": "Sprite Animations as depicted by playing a series of Textures", | ||
@@ -25,13 +26,14 @@ "author": "Mat Groves", | ||
"files": [ | ||
"lib" | ||
"lib", | ||
"dist" | ||
], | ||
"dependencies": { | ||
"@pixi/core": "^5.0.0-rc.2", | ||
"@pixi/sprite": "^5.0.0-rc.2", | ||
"@pixi/ticker": "^5.0.0-rc.2" | ||
"@pixi/core": "^5.0.0-rc.3", | ||
"@pixi/sprite": "^5.0.0-rc.3", | ||
"@pixi/ticker": "^5.0.0-rc.3" | ||
}, | ||
"devDependencies": { | ||
"floss": "^2.1.5" | ||
"floss": "^2.2.0" | ||
}, | ||
"gitHead": "53b354f4e01d3baee7223756dd09a3163ad29d0f" | ||
"gitHead": "8bd27c8b903ae2c8f90d91d64e82d65b19ac1cdb" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
113558
11
1209
Updated@pixi/core@^5.0.0-rc.3
Updated@pixi/sprite@^5.0.0-rc.3
Updated@pixi/ticker@^5.0.0-rc.3