@pixi/sprite-tiling
Advanced tools
Comparing version 5.0.0-rc.2 to 5.0.0-rc.3
/*! | ||
* @pixi/sprite-tiling - v5.0.0-rc.2 | ||
* Compiled Mon, 18 Feb 2019 23:45:28 UTC | ||
* @pixi/sprite-tiling - v5.0.0-rc.3 | ||
* Compiled Fri, 22 Mar 2019 16:33:44 UTC | ||
* | ||
@@ -23,3 +23,3 @@ * @pixi/sprite-tiling is licensed under the MIT License. | ||
*/ | ||
var TilingSprite = /*@__PURE__*/(function (Sprite$$1) { | ||
var TilingSprite = /*@__PURE__*/(function (Sprite) { | ||
function TilingSprite(texture, width, height) | ||
@@ -30,3 +30,3 @@ { | ||
Sprite$$1.call(this, texture); | ||
Sprite.call(this, texture); | ||
@@ -91,4 +91,4 @@ /** | ||
if ( Sprite$$1 ) TilingSprite.__proto__ = Sprite$$1; | ||
TilingSprite.prototype = Object.create( Sprite$$1 && Sprite$$1.prototype ); | ||
if ( Sprite ) TilingSprite.__proto__ = Sprite; | ||
TilingSprite.prototype = Object.create( Sprite && Sprite.prototype ); | ||
TilingSprite.prototype.constructor = TilingSprite; | ||
@@ -224,3 +224,3 @@ | ||
return Sprite$$1.prototype.getLocalBounds.call(this, rect); | ||
return Sprite.prototype.getLocalBounds.call(this, rect); | ||
}; | ||
@@ -267,3 +267,3 @@ | ||
{ | ||
Sprite$$1.prototype.destroy.call(this, options); | ||
Sprite.prototype.destroy.call(this, options); | ||
@@ -388,6 +388,6 @@ this.tileTransform = null; | ||
*/ | ||
var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer$$1) { | ||
var TilingSpriteRenderer = /*@__PURE__*/(function (ObjectRenderer) { | ||
function TilingSpriteRenderer(renderer) | ||
{ | ||
ObjectRenderer$$1.call(this, renderer); | ||
ObjectRenderer.call(this, renderer); | ||
@@ -403,4 +403,4 @@ var uniforms = { globals: this.renderer.globalUniforms }; | ||
if ( ObjectRenderer$$1 ) TilingSpriteRenderer.__proto__ = ObjectRenderer$$1; | ||
TilingSpriteRenderer.prototype = Object.create( ObjectRenderer$$1 && ObjectRenderer$$1.prototype ); | ||
if ( ObjectRenderer ) TilingSpriteRenderer.__proto__ = ObjectRenderer; | ||
TilingSpriteRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype ); | ||
TilingSpriteRenderer.prototype.constructor = TilingSpriteRenderer; | ||
@@ -407,0 +407,0 @@ |
/*! | ||
* @pixi/sprite-tiling - v5.0.0-rc.2 | ||
* Compiled Mon, 18 Feb 2019 23:45:28 UTC | ||
* @pixi/sprite-tiling - v5.0.0-rc.3 | ||
* Compiled Fri, 22 Mar 2019 16:33:44 UTC | ||
* | ||
@@ -5,0 +5,0 @@ * @pixi/sprite-tiling is licensed under the MIT License. |
{ | ||
"name": "@pixi/sprite-tiling", | ||
"version": "5.0.0-rc.2", | ||
"version": "5.0.0-rc.3", | ||
"main": "lib/sprite-tiling.js", | ||
"module": "lib/sprite-tiling.es.js", | ||
"bundle": "dist/sprite-tiling.js", | ||
"description": "Tiling Sprites for faster rendering a tiling image", | ||
@@ -25,16 +26,17 @@ "author": "Mat Groves", | ||
"files": [ | ||
"lib" | ||
"lib", | ||
"dist" | ||
], | ||
"dependencies": { | ||
"@pixi/constants": "^5.0.0-rc.2", | ||
"@pixi/core": "^5.0.0-rc.2", | ||
"@pixi/display": "^5.0.0-rc.2", | ||
"@pixi/math": "^5.0.0-rc.2", | ||
"@pixi/sprite": "^5.0.0-rc.2", | ||
"@pixi/utils": "^5.0.0-rc.2" | ||
"@pixi/constants": "^5.0.0-rc.3", | ||
"@pixi/core": "^5.0.0-rc.3", | ||
"@pixi/display": "^5.0.0-rc.3", | ||
"@pixi/math": "^5.0.0-rc.3", | ||
"@pixi/sprite": "^5.0.0-rc.3", | ||
"@pixi/utils": "^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
149870
11
1313
Updated@pixi/constants@^5.0.0-rc.3
Updated@pixi/core@^5.0.0-rc.3
Updated@pixi/display@^5.0.0-rc.3
Updated@pixi/math@^5.0.0-rc.3
Updated@pixi/sprite@^5.0.0-rc.3
Updated@pixi/utils@^5.0.0-rc.3