@galacean/effects-threejs 1.6.7 → 1.6.8-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Description: Galacean Effects runtime threejs plugin for the web
|
|
4
4
|
* Author: Ant Group CO., Ltd.
|
|
5
5
|
* Contributors: 燃然,飂兮,十弦,云垣,茂安,意绮
|
|
6
|
-
* Version: v1.6.
|
|
6
|
+
* Version: v1.6.8-alpha.1
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
'use strict';
|
|
@@ -17754,7 +17754,9 @@ var ParticleSystem = /** @class */ (function () {
|
|
|
17754
17754
|
if (options.removeParticle) {
|
|
17755
17755
|
mesh.removePoint(pointIndex);
|
|
17756
17756
|
this.clearPointTrail(pointIndex);
|
|
17757
|
+
link.removeNode(node);
|
|
17757
17758
|
node.content[0] = 0;
|
|
17759
|
+
link.shiftNode(node.content);
|
|
17758
17760
|
}
|
|
17759
17761
|
hitPositions.push(pos);
|
|
17760
17762
|
if (!options.multiple) {
|
|
@@ -27522,7 +27524,7 @@ Geometry.create = function (engine, options) {
|
|
|
27522
27524
|
Mesh.create = function (engine, props) {
|
|
27523
27525
|
return new ThreeMesh(engine, props);
|
|
27524
27526
|
};
|
|
27525
|
-
var version = "1.6.
|
|
27527
|
+
var version = "1.6.8-alpha.1";
|
|
27526
27528
|
logger.info('THREEJS plugin version: ' + version);
|
|
27527
27529
|
|
|
27528
27530
|
exports.AbstractPlugin = AbstractPlugin;
|