Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pixi/particles

Package Overview
Dependencies
Maintainers
3
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pixi/particles - npm Package Compare versions

Comparing version 5.0.0-rc.2 to 5.0.0-rc.3

dist/particles.js

24

lib/particles.es.js
/*!
* @pixi/particles - v5.0.0-rc.2
* Compiled Mon, 18 Feb 2019 23:45:28 UTC
* @pixi/particles - v5.0.0-rc.3
* Compiled Fri, 22 Mar 2019 16:33:44 UTC
*

@@ -41,3 +41,3 @@ * @pixi/particles is licensed under the MIT License.

*/
var ParticleContainer = /*@__PURE__*/(function (Container$$1) {
var ParticleContainer = /*@__PURE__*/(function (Container) {
function ParticleContainer(maxSize, properties, batchSize, autoResize)

@@ -49,3 +49,3 @@ {

Container$$1.call(this);
Container.call(this);

@@ -164,4 +164,4 @@ // Making sure the batch size is valid

if ( Container$$1 ) ParticleContainer.__proto__ = Container$$1;
ParticleContainer.prototype = Object.create( Container$$1 && Container$$1.prototype );
if ( Container ) ParticleContainer.__proto__ = Container;
ParticleContainer.prototype = Object.create( Container && Container.prototype );
ParticleContainer.prototype.constructor = ParticleContainer;

@@ -292,3 +292,3 @@

{
Container$$1.prototype.destroy.call(this, options);
Container.prototype.destroy.call(this, options);

@@ -573,6 +573,6 @@ this.dispose();

*/
var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer$$1) {
var ParticleRenderer = /*@__PURE__*/(function (ObjectRenderer) {
function ParticleRenderer(renderer)
{
ObjectRenderer$$1.call(this, renderer);
ObjectRenderer.call(this, renderer);

@@ -637,4 +637,4 @@ // 65535 is max vertex index in the index buffer (see ParticleRenderer)

if ( ObjectRenderer$$1 ) ParticleRenderer.__proto__ = ObjectRenderer$$1;
ParticleRenderer.prototype = Object.create( ObjectRenderer$$1 && ObjectRenderer$$1.prototype );
if ( ObjectRenderer ) ParticleRenderer.__proto__ = ObjectRenderer;
ParticleRenderer.prototype = Object.create( ObjectRenderer && ObjectRenderer.prototype );
ParticleRenderer.prototype.constructor = ParticleRenderer;

@@ -975,3 +975,3 @@

{
ObjectRenderer$$1.prototype.destroy.call(this);
ObjectRenderer.prototype.destroy.call(this);

@@ -978,0 +978,0 @@ if (this.shader)

/*!
* @pixi/particles - v5.0.0-rc.2
* Compiled Mon, 18 Feb 2019 23:45:28 UTC
* @pixi/particles - v5.0.0-rc.3
* Compiled Fri, 22 Mar 2019 16:33:44 UTC
*

@@ -5,0 +5,0 @@ * @pixi/particles is licensed under the MIT License.

{
"name": "@pixi/particles",
"version": "5.0.0-rc.2",
"version": "5.0.0-rc.3",
"main": "lib/particles.js",
"module": "lib/particles.es.js",
"bundle": "dist/particles.js",
"description": "Render many sprite particles as efficiently as possible",

@@ -22,15 +23,16 @@ "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/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/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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc