@pixi/mesh-extras
Advanced tools
Comparing version 5.0.0-rc.3 to 5.0.0
/*! | ||
* @pixi/mesh-extras - v5.0.0-rc.3 | ||
* Compiled Fri, 22 Mar 2019 16:33:44 UTC | ||
* Compiled Tue, 30 Apr 2019 02:21:00 UTC | ||
* | ||
@@ -143,4 +143,4 @@ * @pixi/mesh-extras is licensed under the MIT License. | ||
var vertexBuffer = this.getAttribute('aVertexPosition'); | ||
var uvBuffer = this.getAttribute('aTextureCoord'); | ||
var vertexBuffer = this.getBuffer('aVertexPosition'); | ||
var uvBuffer = this.getBuffer('aTextureCoord'); | ||
var indexBuffer = this.getIndex(); | ||
@@ -335,3 +335,3 @@ | ||
/** | ||
* The Plane allows you to draw a texture across several points and then manipulate these points | ||
* The SimplePlane allows you to draw a texture across several points and then manipulate these points | ||
* | ||
@@ -342,3 +342,3 @@ *```js | ||
* }; | ||
* let Plane = new PIXI.Plane(PIXI.Texture.from("snake.png"), points); | ||
* let SimplePlane = new PIXI.SimplePlane(PIXI.Texture.from("snake.png"), points); | ||
* ``` | ||
@@ -442,3 +442,3 @@ * | ||
geometry.getAttribute('aVertexPosition').static = false; | ||
geometry.getBuffer('aVertexPosition').static = false; | ||
@@ -468,7 +468,7 @@ var meshMaterial = new mesh.MeshMaterial(texture); | ||
{ | ||
return this.geometry.getAttribute('aVertexPosition').data; | ||
return this.geometry.getBuffer('aVertexPosition').data; | ||
}; | ||
prototypeAccessors.vertices.set = function (value) | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').data = value; | ||
this.geometry.getBuffer('aVertexPosition').data = value; | ||
}; | ||
@@ -480,3 +480,3 @@ | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').update(); | ||
this.geometry.getBuffer('aVertexPosition').update(); | ||
} | ||
@@ -599,3 +599,3 @@ | ||
{ | ||
return this.geometry.getAttribute('aVertexPosition').data; | ||
return this.geometry.getBuffer('aVertexPosition').data; | ||
}; | ||
@@ -605,3 +605,3 @@ | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').data = value; | ||
this.geometry.getBuffer('aVertexPosition').data = value; | ||
}; | ||
@@ -608,0 +608,0 @@ |
/*! | ||
* @pixi/mesh-extras - v5.0.0-rc.3 | ||
* Compiled Fri, 22 Mar 2019 16:33:44 UTC | ||
* Compiled Tue, 30 Apr 2019 02:21:00 UTC | ||
* | ||
@@ -142,4 +142,4 @@ * @pixi/mesh-extras is licensed under the MIT License. | ||
var vertexBuffer = this.getAttribute('aVertexPosition'); | ||
var uvBuffer = this.getAttribute('aTextureCoord'); | ||
var vertexBuffer = this.getBuffer('aVertexPosition'); | ||
var uvBuffer = this.getBuffer('aTextureCoord'); | ||
var indexBuffer = this.getIndex(); | ||
@@ -327,3 +327,3 @@ | ||
/** | ||
* The Plane allows you to draw a texture across several points and then manipulate these points | ||
* The SimplePlane allows you to draw a texture across several points and then manipulate these points | ||
* | ||
@@ -334,3 +334,3 @@ *```js | ||
* }; | ||
* let Plane = new PIXI.Plane(PIXI.Texture.from("snake.png"), points); | ||
* let SimplePlane = new PIXI.SimplePlane(PIXI.Texture.from("snake.png"), points); | ||
* ``` | ||
@@ -434,3 +434,3 @@ * | ||
geometry.getAttribute('aVertexPosition').static = false; | ||
geometry.getBuffer('aVertexPosition').static = false; | ||
@@ -460,7 +460,7 @@ var meshMaterial = new MeshMaterial(texture); | ||
{ | ||
return this.geometry.getAttribute('aVertexPosition').data; | ||
return this.geometry.getBuffer('aVertexPosition').data; | ||
}; | ||
prototypeAccessors.vertices.set = function (value) | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').data = value; | ||
this.geometry.getBuffer('aVertexPosition').data = value; | ||
}; | ||
@@ -472,3 +472,3 @@ | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').update(); | ||
this.geometry.getBuffer('aVertexPosition').update(); | ||
} | ||
@@ -591,3 +591,3 @@ | ||
{ | ||
return this.geometry.getAttribute('aVertexPosition').data; | ||
return this.geometry.getBuffer('aVertexPosition').data; | ||
}; | ||
@@ -597,3 +597,3 @@ | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').data = value; | ||
this.geometry.getBuffer('aVertexPosition').data = value; | ||
}; | ||
@@ -600,0 +600,0 @@ |
/*! | ||
* @pixi/mesh-extras - v5.0.0-rc.3 | ||
* Compiled Fri, 22 Mar 2019 16:33:44 UTC | ||
* Compiled Tue, 30 Apr 2019 02:21:00 UTC | ||
* | ||
@@ -146,4 +146,4 @@ * @pixi/mesh-extras is licensed under the MIT License. | ||
var vertexBuffer = this.getAttribute('aVertexPosition'); | ||
var uvBuffer = this.getAttribute('aTextureCoord'); | ||
var vertexBuffer = this.getBuffer('aVertexPosition'); | ||
var uvBuffer = this.getBuffer('aTextureCoord'); | ||
var indexBuffer = this.getIndex(); | ||
@@ -331,3 +331,3 @@ | ||
/** | ||
* The Plane allows you to draw a texture across several points and then manipulate these points | ||
* The SimplePlane allows you to draw a texture across several points and then manipulate these points | ||
* | ||
@@ -338,3 +338,3 @@ *```js | ||
* }; | ||
* let Plane = new PIXI.Plane(PIXI.Texture.from("snake.png"), points); | ||
* let SimplePlane = new PIXI.SimplePlane(PIXI.Texture.from("snake.png"), points); | ||
* ``` | ||
@@ -438,3 +438,3 @@ * | ||
geometry.getAttribute('aVertexPosition').static = false; | ||
geometry.getBuffer('aVertexPosition').static = false; | ||
@@ -464,7 +464,7 @@ var meshMaterial = new mesh.MeshMaterial(texture); | ||
{ | ||
return this.geometry.getAttribute('aVertexPosition').data; | ||
return this.geometry.getBuffer('aVertexPosition').data; | ||
}; | ||
prototypeAccessors.vertices.set = function (value) | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').data = value; | ||
this.geometry.getBuffer('aVertexPosition').data = value; | ||
}; | ||
@@ -476,3 +476,3 @@ | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').update(); | ||
this.geometry.getBuffer('aVertexPosition').update(); | ||
} | ||
@@ -595,3 +595,3 @@ | ||
{ | ||
return this.geometry.getAttribute('aVertexPosition').data; | ||
return this.geometry.getBuffer('aVertexPosition').data; | ||
}; | ||
@@ -601,3 +601,3 @@ | ||
{ | ||
this.geometry.getAttribute('aVertexPosition').data = value; | ||
this.geometry.getBuffer('aVertexPosition').data = value; | ||
}; | ||
@@ -604,0 +604,0 @@ |
{ | ||
"name": "@pixi/mesh-extras", | ||
"version": "5.0.0-rc.3", | ||
"version": "5.0.0", | ||
"main": "lib/mesh-extras.js", | ||
"module": "lib/mesh-extras.es.js", | ||
"bundle": "dist/mesh-extras.js", | ||
"description": "Custom Mesh display objects, like Rope and Plane", | ||
"description": "Custom Mesh display objects, like Rope and SimplePlane", | ||
"author": "Mat Groves", | ||
@@ -31,12 +31,12 @@ "contributors": [ | ||
"@pixi/constants": "^5.0.0-rc.3", | ||
"@pixi/core": "^5.0.0-rc.3", | ||
"@pixi/core": "^5.0.0", | ||
"@pixi/math": "^5.0.0-rc.3", | ||
"@pixi/mesh": "^5.0.0-rc.3", | ||
"@pixi/utils": "^5.0.0-rc.3" | ||
"@pixi/mesh": "^5.0.0", | ||
"@pixi/utils": "^5.0.0" | ||
}, | ||
"devDependencies": { | ||
"@pixi/loaders": "^5.0.0-rc.3", | ||
"@pixi/loaders": "^5.0.0", | ||
"floss": "^2.2.0" | ||
}, | ||
"gitHead": "8bd27c8b903ae2c8f90d91d64e82d65b19ac1cdb" | ||
"gitHead": "607e68419902444cde15f2d69588fbd189481cd8" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
0
173669
9
1881
Updated@pixi/core@^5.0.0
Updated@pixi/mesh@^5.0.0
Updated@pixi/utils@^5.0.0