@tsparticles/path-zig-zag 4.0.0-alpha.8 → 4.0.0-beta.0

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/38.min.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(this.webpackChunk_tsparticles_path_zig_zag=this.webpackChunk_tsparticles_path_zig_zag||[]).push([[38],{38(t,e,i){i.d(e,{ZigZagPathGenerator:()=>h});var a=i(303);let n=Math.PI*a.half,s={waveHeight:{min:0,max:3},waveLength:{min:0,max:5}};class h{options;_container;_res;constructor(t){this._container=t,this._res=a.Vector.origin,this.options=(0,a.deepExtend)({},s)}generate(t,e){let{options:i}=this;t.zigzag??={counter:(0,a.getRandom)(),waveHeight:(0,a.getRangeValue)(i.waveHeight),waveLength:(0,a.getRangeValue)(i.waveLength)};let s=.5/t.zigzag.waveLength*e.factor;t.zigzag.counter+=s;let h=t.zigzag.waveHeight*Math.sin(t.zigzag.counter);return t.position.x+=h*Math.cos(t.velocity.angle+n),t.position.y+=h*Math.sin(t.velocity.angle+n),this._res.x=0,this._res.y=0,this._res}init(){let t=this._container.actualOptions.particles.move.path.options;this.options.waveLength=t.waveLength??this.options.waveLength,this.options.waveHeight=t.waveHeight??this.options.waveHeight}reset(){}update(){}}}}]);
@@ -1,29 +1,38 @@
1
- import { Vector, getRandom, getRangeValue, half, } from "@tsparticles/engine";
1
+ import { Vector, deepExtend, getRandom, getRangeValue, half, } from "@tsparticles/engine";
2
2
  const angularFrequencyFactor = 0.5, halfPI = Math.PI * half;
3
+ const defaultOptions = {
4
+ waveHeight: { min: 0, max: 3 },
5
+ waveLength: { min: 0, max: 5 },
6
+ };
3
7
  export class ZigZagPathGenerator {
4
- constructor() {
5
- this.options = {
6
- waveHeight: { min: 0, max: 3 },
7
- waveLength: { min: 0, max: 5 },
8
- };
8
+ options;
9
+ _container;
10
+ _res;
11
+ constructor(container) {
12
+ this._container = container;
13
+ this._res = Vector.origin;
14
+ this.options = deepExtend({}, defaultOptions);
9
15
  }
10
16
  generate(particle, delta) {
17
+ const { options } = this;
11
18
  particle.zigzag ??= {
12
19
  counter: getRandom(),
13
- waveHeight: getRangeValue(this.options.waveHeight),
14
- waveLength: getRangeValue(this.options.waveLength),
20
+ waveHeight: getRangeValue(options.waveHeight),
21
+ waveLength: getRangeValue(options.waveLength),
15
22
  };
16
23
  const angularFrequency = (angularFrequencyFactor / particle.zigzag.waveLength) * delta.factor;
17
24
  particle.zigzag.counter += angularFrequency;
18
25
  const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);
19
26
  particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);
20
27
  particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);
21
- return Vector.origin;
28
+ this._res.x = 0;
29
+ this._res.y = 0;
30
+ return this._res;
22
31
  }
23
- init(container) {
24
- const options = container.actualOptions.particles.move.path.options;
25
- this.options.waveLength = options["waveLength"] ?? this.options.waveLength;
26
- this.options.waveHeight = options["waveHeight"] ?? this.options.waveHeight;
32
+ init() {
33
+ const sourceOptions = this._container.actualOptions.particles.move.path.options;
34
+ this.options.waveLength = sourceOptions["waveLength"] ?? this.options.waveLength;
35
+ this.options.waveHeight = sourceOptions["waveHeight"] ?? this.options.waveHeight;
27
36
  }
28
37
  reset() {
29
38
  }
package/browser/index.js CHANGED
@@ -1,8 +1,12 @@
1
1
  export const zigZagPathName = "zigZagPathGenerator";
2
2
  export async function loadZigZagPath(engine) {
3
- engine.checkVersion("4.0.0-alpha.8");
3
+ engine.checkVersion("4.0.0-beta.0");
4
4
  await engine.register(async (e) => {
5
- const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
6
- e.addPathGenerator(zigZagPathName, new ZigZagPathGenerator());
5
+ const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
+ ensureBaseMoverLoaded(e);
7
+ e.addPathGenerator?.(zigZagPathName, async (container) => {
8
+ const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
9
+ return new ZigZagPathGenerator(container);
10
+ });
7
11
  });
8
12
  }
@@ -1,29 +1,38 @@
1
- import { Vector, getRandom, getRangeValue, half, } from "@tsparticles/engine";
1
+ import { Vector, deepExtend, getRandom, getRangeValue, half, } from "@tsparticles/engine";
2
2
  const angularFrequencyFactor = 0.5, halfPI = Math.PI * half;
3
+ const defaultOptions = {
4
+ waveHeight: { min: 0, max: 3 },
5
+ waveLength: { min: 0, max: 5 },
6
+ };
3
7
  export class ZigZagPathGenerator {
4
- constructor() {
5
- this.options = {
6
- waveHeight: { min: 0, max: 3 },
7
- waveLength: { min: 0, max: 5 },
8
- };
8
+ options;
9
+ _container;
10
+ _res;
11
+ constructor(container) {
12
+ this._container = container;
13
+ this._res = Vector.origin;
14
+ this.options = deepExtend({}, defaultOptions);
9
15
  }
10
16
  generate(particle, delta) {
17
+ const { options } = this;
11
18
  particle.zigzag ??= {
12
19
  counter: getRandom(),
13
- waveHeight: getRangeValue(this.options.waveHeight),
14
- waveLength: getRangeValue(this.options.waveLength),
20
+ waveHeight: getRangeValue(options.waveHeight),
21
+ waveLength: getRangeValue(options.waveLength),
15
22
  };
16
23
  const angularFrequency = (angularFrequencyFactor / particle.zigzag.waveLength) * delta.factor;
17
24
  particle.zigzag.counter += angularFrequency;
18
25
  const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);
19
26
  particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);
20
27
  particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);
21
- return Vector.origin;
28
+ this._res.x = 0;
29
+ this._res.y = 0;
30
+ return this._res;
22
31
  }
23
- init(container) {
24
- const options = container.actualOptions.particles.move.path.options;
25
- this.options.waveLength = options["waveLength"] ?? this.options.waveLength;
26
- this.options.waveHeight = options["waveHeight"] ?? this.options.waveHeight;
32
+ init() {
33
+ const sourceOptions = this._container.actualOptions.particles.move.path.options;
34
+ this.options.waveLength = sourceOptions["waveLength"] ?? this.options.waveLength;
35
+ this.options.waveHeight = sourceOptions["waveHeight"] ?? this.options.waveHeight;
27
36
  }
28
37
  reset() {
29
38
  }
package/cjs/index.js CHANGED
@@ -1,8 +1,12 @@
1
1
  export const zigZagPathName = "zigZagPathGenerator";
2
2
  export async function loadZigZagPath(engine) {
3
- engine.checkVersion("4.0.0-alpha.8");
3
+ engine.checkVersion("4.0.0-beta.0");
4
4
  await engine.register(async (e) => {
5
- const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
6
- e.addPathGenerator(zigZagPathName, new ZigZagPathGenerator());
5
+ const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
+ ensureBaseMoverLoaded(e);
7
+ e.addPathGenerator?.(zigZagPathName, async (container) => {
8
+ const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
9
+ return new ZigZagPathGenerator(container);
10
+ });
7
11
  });
8
12
  }
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v4.0.0-alpha.8
7
+ * v4.0.0-beta.0
8
8
  */
9
9
  "use strict";
10
10
  /*
@@ -23,7 +23,7 @@
23
23
  \*********************************************/
24
24
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
25
25
 
26
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ZigZagPathGenerator: () => (/* binding */ ZigZagPathGenerator)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n\nconst angularFrequencyFactor = 0.5,\n halfPI = Math.PI * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half;\nclass ZigZagPathGenerator {\n constructor() {\n this.options = {\n waveHeight: {\n min: 0,\n max: 3\n },\n waveLength: {\n min: 0,\n max: 5\n }\n };\n }\n generate(particle, delta) {\n particle.zigzag ??= {\n counter: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)(),\n waveHeight: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(this.options.waveHeight),\n waveLength: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(this.options.waveLength)\n };\n const angularFrequency = angularFrequencyFactor / particle.zigzag.waveLength * delta.factor;\n particle.zigzag.counter += angularFrequency;\n const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);\n particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);\n particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);\n return _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin;\n }\n init(container) {\n const options = container.actualOptions.particles.move.path.options;\n this.options.waveLength = options[\"waveLength\"] ?? this.options.waveLength;\n this.options.waveHeight = options[\"waveHeight\"] ?? this.options.waveHeight;\n }\n reset() {}\n update() {}\n}\n\n//# sourceURL=webpack://@tsparticles/path-zig-zag/./dist/browser/ZigZagPathGenerator.js?\n}");
26
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ZigZagPathGenerator: () => (/* binding */ ZigZagPathGenerator)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n\nconst angularFrequencyFactor = 0.5, halfPI = Math.PI * _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.half;\nconst defaultOptions = {\n waveHeight: {\n min: 0,\n max: 3\n },\n waveLength: {\n min: 0,\n max: 5\n }\n};\nclass ZigZagPathGenerator {\n options;\n _container;\n _res;\n constructor(container){\n this._container = container;\n this._res = _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin;\n this.options = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.deepExtend)({}, defaultOptions);\n }\n generate(particle, delta) {\n const { options } = this;\n particle.zigzag ??= {\n counter: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)(),\n waveHeight: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(options.waveHeight),\n waveLength: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(options.waveLength)\n };\n const angularFrequency = angularFrequencyFactor / particle.zigzag.waveLength * delta.factor;\n particle.zigzag.counter += angularFrequency;\n const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);\n particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);\n particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);\n this._res.x = 0;\n this._res.y = 0;\n return this._res;\n }\n init() {\n const sourceOptions = this._container.actualOptions.particles.move.path.options;\n this.options.waveLength = sourceOptions[\"waveLength\"] ?? this.options.waveLength;\n this.options.waveHeight = sourceOptions[\"waveHeight\"] ?? this.options.waveHeight;\n }\n reset() {}\n update() {}\n}\n\n\n//# sourceURL=webpack://@tsparticles/path-zig-zag/./dist/browser/ZigZagPathGenerator.js?\n}");
27
27
 
28
28
  /***/ }
29
29
 
@@ -1,29 +1,38 @@
1
- import { Vector, getRandom, getRangeValue, half, } from "@tsparticles/engine";
1
+ import { Vector, deepExtend, getRandom, getRangeValue, half, } from "@tsparticles/engine";
2
2
  const angularFrequencyFactor = 0.5, halfPI = Math.PI * half;
3
+ const defaultOptions = {
4
+ waveHeight: { min: 0, max: 3 },
5
+ waveLength: { min: 0, max: 5 },
6
+ };
3
7
  export class ZigZagPathGenerator {
4
- constructor() {
5
- this.options = {
6
- waveHeight: { min: 0, max: 3 },
7
- waveLength: { min: 0, max: 5 },
8
- };
8
+ options;
9
+ _container;
10
+ _res;
11
+ constructor(container) {
12
+ this._container = container;
13
+ this._res = Vector.origin;
14
+ this.options = deepExtend({}, defaultOptions);
9
15
  }
10
16
  generate(particle, delta) {
17
+ const { options } = this;
11
18
  particle.zigzag ??= {
12
19
  counter: getRandom(),
13
- waveHeight: getRangeValue(this.options.waveHeight),
14
- waveLength: getRangeValue(this.options.waveLength),
20
+ waveHeight: getRangeValue(options.waveHeight),
21
+ waveLength: getRangeValue(options.waveLength),
15
22
  };
16
23
  const angularFrequency = (angularFrequencyFactor / particle.zigzag.waveLength) * delta.factor;
17
24
  particle.zigzag.counter += angularFrequency;
18
25
  const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);
19
26
  particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);
20
27
  particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);
21
- return Vector.origin;
28
+ this._res.x = 0;
29
+ this._res.y = 0;
30
+ return this._res;
22
31
  }
23
- init(container) {
24
- const options = container.actualOptions.particles.move.path.options;
25
- this.options.waveLength = options["waveLength"] ?? this.options.waveLength;
26
- this.options.waveHeight = options["waveHeight"] ?? this.options.waveHeight;
32
+ init() {
33
+ const sourceOptions = this._container.actualOptions.particles.move.path.options;
34
+ this.options.waveLength = sourceOptions["waveLength"] ?? this.options.waveLength;
35
+ this.options.waveHeight = sourceOptions["waveHeight"] ?? this.options.waveHeight;
27
36
  }
28
37
  reset() {
29
38
  }
package/esm/index.js CHANGED
@@ -1,8 +1,12 @@
1
1
  export const zigZagPathName = "zigZagPathGenerator";
2
2
  export async function loadZigZagPath(engine) {
3
- engine.checkVersion("4.0.0-alpha.8");
3
+ engine.checkVersion("4.0.0-beta.0");
4
4
  await engine.register(async (e) => {
5
- const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
6
- e.addPathGenerator(zigZagPathName, new ZigZagPathGenerator());
5
+ const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
+ ensureBaseMoverLoaded(e);
7
+ e.addPathGenerator?.(zigZagPathName, async (container) => {
8
+ const { ZigZagPathGenerator } = await import("./ZigZagPathGenerator.js");
9
+ return new ZigZagPathGenerator(container);
10
+ });
7
11
  });
8
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/path-zig-zag",
3
- "version": "4.0.0-alpha.8",
3
+ "version": "4.0.0-beta.0",
4
4
  "description": "tsParticles zig zag path",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -101,7 +101,8 @@
101
101
  "./package.json": "./package.json"
102
102
  },
103
103
  "dependencies": {
104
- "@tsparticles/engine": "4.0.0-alpha.8"
104
+ "@tsparticles/engine": "4.0.0-beta.0",
105
+ "@tsparticles/plugin-move": "4.0.0-beta.0"
105
106
  },
106
107
  "publishConfig": {
107
108
  "access": "public"
package/report.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8"/>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
6
- <title>@tsparticles/path-zig-zag [23 Jan 2026 at 23:41]</title>
6
+ <title>@tsparticles/path-zig-zag [19 Mar 2026 at 14:01]</title>
7
7
  <link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
8
8
 
9
9
  <script>
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v4.0.0-alpha.8
7
+ * v4.0.0-beta.0
8
8
  */
9
9
  /*
10
10
  * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
@@ -16,28 +16,18 @@
16
16
  */
17
17
  (function webpackUniversalModuleDefinition(root, factory) {
18
18
  if(typeof exports === 'object' && typeof module === 'object')
19
- module.exports = factory(require("@tsparticles/engine"));
19
+ module.exports = factory(require("@tsparticles/plugin-move"), require("@tsparticles/engine"));
20
20
  else if(typeof define === 'function' && define.amd)
21
- define(["@tsparticles/engine"], factory);
21
+ define(["@tsparticles/plugin-move", "@tsparticles/engine"], factory);
22
22
  else {
23
- var a = typeof exports === 'object' ? factory(require("@tsparticles/engine")) : factory(root["window"]);
23
+ var a = typeof exports === 'object' ? factory(require("@tsparticles/plugin-move"), require("@tsparticles/engine")) : factory(root["window"], root["window"]);
24
24
  for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
25
25
  }
26
- })(this, (__WEBPACK_EXTERNAL_MODULE__tsparticles_engine__) => {
26
+ })(this, (__WEBPACK_EXTERNAL_MODULE__tsparticles_plugin_move__, __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__) => {
27
27
  return /******/ (() => { // webpackBootstrap
28
28
  /******/ "use strict";
29
29
  /******/ var __webpack_modules__ = ({
30
30
 
31
- /***/ "./dist/browser/index.js"
32
- /*!*******************************!*\
33
- !*** ./dist/browser/index.js ***!
34
- \*******************************/
35
- (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
36
-
37
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadZigZagPath: () => (/* binding */ loadZigZagPath),\n/* harmony export */ zigZagPathName: () => (/* binding */ zigZagPathName)\n/* harmony export */ });\nconst zigZagPathName = \"zigZagPathGenerator\";\nasync function loadZigZagPath(engine) {\n engine.checkVersion(\"4.0.0-alpha.8\");\n await engine.register(async e => {\n const {\n ZigZagPathGenerator\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_ZigZagPathGenerator_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ZigZagPathGenerator.js */ \"./dist/browser/ZigZagPathGenerator.js\"));\n e.addPathGenerator(zigZagPathName, new ZigZagPathGenerator());\n });\n}\n\n//# sourceURL=webpack://@tsparticles/path-zig-zag/./dist/browser/index.js?\n}");
38
-
39
- /***/ },
40
-
41
31
  /***/ "@tsparticles/engine"
42
32
  /*!*********************************************************************************************************************************!*\
43
33
  !*** external {"commonjs":"@tsparticles/engine","commonjs2":"@tsparticles/engine","amd":"@tsparticles/engine","root":"window"} ***!
@@ -46,6 +36,26 @@ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpa
46
36
 
47
37
  module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
48
38
 
39
+ /***/ },
40
+
41
+ /***/ "@tsparticles/plugin-move"
42
+ /*!************************************************************************************************************************************************!*\
43
+ !*** external {"commonjs":"@tsparticles/plugin-move","commonjs2":"@tsparticles/plugin-move","amd":"@tsparticles/plugin-move","root":"window"} ***!
44
+ \************************************************************************************************************************************************/
45
+ (module) {
46
+
47
+ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_plugin_move__;
48
+
49
+ /***/ },
50
+
51
+ /***/ "./dist/browser/index.js"
52
+ /*!*******************************!*\
53
+ !*** ./dist/browser/index.js ***!
54
+ \*******************************/
55
+ (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
56
+
57
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadZigZagPath: () => (/* binding */ loadZigZagPath),\n/* harmony export */ zigZagPathName: () => (/* binding */ zigZagPathName)\n/* harmony export */ });\nconst zigZagPathName = \"zigZagPathGenerator\";\nasync function loadZigZagPath(engine) {\n engine.checkVersion(\"4.0.0-beta.0\");\n await engine.register(async (e)=>{\n const { ensureBaseMoverLoaded } = await Promise.resolve(/*! import() */).then(__webpack_require__.t.bind(__webpack_require__, /*! @tsparticles/plugin-move */ \"@tsparticles/plugin-move\", 19));\n ensureBaseMoverLoaded(e);\n e.addPathGenerator?.(zigZagPathName, async (container)=>{\n const { ZigZagPathGenerator } = await __webpack_require__.e(/*! import() */ \"dist_browser_ZigZagPathGenerator_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./ZigZagPathGenerator.js */ \"./dist/browser/ZigZagPathGenerator.js\"));\n return new ZigZagPathGenerator(container);\n });\n });\n}\n\n\n//# sourceURL=webpack://@tsparticles/path-zig-zag/./dist/browser/index.js?\n}");
58
+
49
59
  /***/ }
50
60
 
51
61
  /******/ });
@@ -60,12 +70,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
60
70
  /******/ if (cachedModule !== undefined) {
61
71
  /******/ return cachedModule.exports;
62
72
  /******/ }
63
- /******/ // Check if module exists (development only)
64
- /******/ if (__webpack_modules__[moduleId] === undefined) {
65
- /******/ var e = new Error("Cannot find module '" + moduleId + "'");
66
- /******/ e.code = 'MODULE_NOT_FOUND';
67
- /******/ throw e;
68
- /******/ }
69
73
  /******/ // Create a new module (and put it into the cache)
70
74
  /******/ var module = __webpack_module_cache__[moduleId] = {
71
75
  /******/ // no module.id needed
@@ -74,6 +78,12 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
74
78
  /******/ };
75
79
  /******/
76
80
  /******/ // Execute the module function
81
+ /******/ if (!(moduleId in __webpack_modules__)) {
82
+ /******/ delete __webpack_module_cache__[moduleId];
83
+ /******/ var e = new Error("Cannot find module '" + moduleId + "'");
84
+ /******/ e.code = 'MODULE_NOT_FOUND';
85
+ /******/ throw e;
86
+ /******/ }
77
87
  /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
78
88
  /******/
79
89
  /******/ // Return the exports of the module
@@ -84,6 +94,36 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
84
94
  /******/ __webpack_require__.m = __webpack_modules__;
85
95
  /******/
86
96
  /************************************************************************/
97
+ /******/ /* webpack/runtime/create fake namespace object */
98
+ /******/ (() => {
99
+ /******/ var getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__);
100
+ /******/ var leafPrototypes;
101
+ /******/ // create a fake namespace object
102
+ /******/ // mode & 1: value is a module id, require it
103
+ /******/ // mode & 2: merge all properties of value into the ns
104
+ /******/ // mode & 4: return value when already ns object
105
+ /******/ // mode & 16: return value when it's Promise-like
106
+ /******/ // mode & 8|1: behave like require
107
+ /******/ __webpack_require__.t = function(value, mode) {
108
+ /******/ if(mode & 1) value = this(value);
109
+ /******/ if(mode & 8) return value;
110
+ /******/ if(typeof value === 'object' && value) {
111
+ /******/ if((mode & 4) && value.__esModule) return value;
112
+ /******/ if((mode & 16) && typeof value.then === 'function') return value;
113
+ /******/ }
114
+ /******/ var ns = Object.create(null);
115
+ /******/ __webpack_require__.r(ns);
116
+ /******/ var def = {};
117
+ /******/ leafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];
118
+ /******/ for(var current = mode & 2 && value; (typeof current == 'object' || typeof current == 'function') && !~leafPrototypes.indexOf(current); current = getProto(current)) {
119
+ /******/ Object.getOwnPropertyNames(current).forEach((key) => (def[key] = () => (value[key])));
120
+ /******/ }
121
+ /******/ def['default'] = () => (value);
122
+ /******/ __webpack_require__.d(ns, def);
123
+ /******/ return ns;
124
+ /******/ };
125
+ /******/ })();
126
+ /******/
87
127
  /******/ /* webpack/runtime/define property getters */
88
128
  /******/ (() => {
89
129
  /******/ // define getter functions for harmony exports
@@ -118,6 +158,18 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
118
158
  /******/ };
119
159
  /******/ })();
120
160
  /******/
161
+ /******/ /* webpack/runtime/global */
162
+ /******/ (() => {
163
+ /******/ __webpack_require__.g = (function() {
164
+ /******/ if (typeof globalThis === 'object') return globalThis;
165
+ /******/ try {
166
+ /******/ return this || new Function('return this')();
167
+ /******/ } catch (e) {
168
+ /******/ if (typeof window === 'object') return window;
169
+ /******/ }
170
+ /******/ })();
171
+ /******/ })();
172
+ /******/
121
173
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
122
174
  /******/ (() => {
123
175
  /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
@@ -182,8 +234,8 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
182
234
  /******/ /* webpack/runtime/publicPath */
183
235
  /******/ (() => {
184
236
  /******/ var scriptUrl;
185
- /******/ if (globalThis.importScripts) scriptUrl = globalThis.location + "";
186
- /******/ var document = globalThis.document;
237
+ /******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
238
+ /******/ var document = __webpack_require__.g.document;
187
239
  /******/ if (!scriptUrl && document) {
188
240
  /******/ if (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')
189
241
  /******/ scriptUrl = document.currentScript.src;
@@ -1,2 +1,2 @@
1
- /*! For license information please see tsparticles.path.zigzag.min.js.LICENSE.txt */
2
- !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var a in r)("object"==typeof exports?exports:e)[a]=r[a]}}(this,(e=>(()=>{var t,r,a={303(t){t.exports=e}},o={};function i(e){var t=o[e];if(void 0!==t)return t.exports;var r=o[e]={exports:{}};return a[e](r,r.exports,i),r.exports}i.m=a,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,r)=>(i.f[r](e,t),t)),[])),i.u=e=>e+".min.js",i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),t={},r="@tsparticles/path-zig-zag:",i.l=(e,a,o,n)=>{if(t[e])t[e].push(a);else{var s,l;if(void 0!==o)for(var p=document.getElementsByTagName("script"),c=0;c<p.length;c++){var u=p[c];if(u.getAttribute("src")==e||u.getAttribute("data-webpack")==r+o){s=u;break}}s||(l=!0,(s=document.createElement("script")).charset="utf-8",i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",r+o),s.src=e),t[e]=[a];var d=(r,a)=>{s.onerror=s.onload=null,clearTimeout(f);var o=t[e];if(delete t[e],s.parentNode&&s.parentNode.removeChild(s),o&&o.forEach((e=>e(a))),r)return r(a)},f=setTimeout(d.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=d.bind(null,s.onerror),s.onload=d.bind(null,s.onload),l&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;globalThis.importScripts&&(e=globalThis.location+"");var t=globalThis.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var a=r.length-1;a>-1&&(!e||!/^http(s?):/.test(e));)e=r[a--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),i.p=e})(),(()=>{var e={952:0};i.f.j=(t,r)=>{var a=i.o(e,t)?e[t]:void 0;if(0!==a)if(a)r.push(a[2]);else{var o=new Promise(((r,o)=>a=e[t]=[r,o]));r.push(a[2]=o);var n=i.p+i.u(t),s=new Error;i.l(n,(r=>{if(i.o(e,t)&&(0!==(a=e[t])&&(e[t]=void 0),a)){var o=r&&("load"===r.type?"missing":r.type),n=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+o+": "+n+")",s.name="ChunkLoadError",s.type=o,s.request=n,a[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var a,o,[n,s,l]=r,p=0;if(n.some((t=>0!==e[t]))){for(a in s)i.o(s,a)&&(i.m[a]=s[a]);if(l)l(i)}for(t&&t(r);p<n.length;p++)o=n[p],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=this.webpackChunk_tsparticles_path_zig_zag=this.webpackChunk_tsparticles_path_zig_zag||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var n={};i.r(n),i.d(n,{loadZigZagPath:()=>l,zigZagPathName:()=>s});const s="zigZagPathGenerator";async function l(e){e.checkVersion("4.0.0-alpha.8"),await e.register((async e=>{const{ZigZagPathGenerator:t}=await i.e(588).then(i.bind(i,588));e.addPathGenerator(s,new t)}))}return n})()));
1
+ !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/plugin-move"),require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/plugin-move","@tsparticles/engine"],t);else{var r="object"==typeof exports?t(require("@tsparticles/plugin-move"),require("@tsparticles/engine")):t(e.window,e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,(e,t)=>(()=>{"use strict";var r,o,i,n={303(e){e.exports=t},400(t){t.exports=e}},a={};function s(e){var t=a[e];if(void 0!==t)return t.exports;var r=a[e]={exports:{}};return n[e](r,r.exports,s),r.exports}s.m=n,p=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,s.t=function(e,t){if(1&t&&(e=this(e)),8&t||"object"==typeof e&&e&&(4&t&&e.__esModule||16&t&&"function"==typeof e.then))return e;var r=Object.create(null);s.r(r);var o={};c=c||[null,p({}),p([]),p(p)];for(var i=2&t&&e;("object"==typeof i||"function"==typeof i)&&!~c.indexOf(i);i=p(i))Object.getOwnPropertyNames(i).forEach(t=>o[t]=()=>e[t]);return o.default=()=>e,s.d(r,o),r},s.d=(e,t)=>{for(var r in t)s.o(t,r)&&!s.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},s.f={},s.e=e=>Promise.all(Object.keys(s.f).reduce((t,r)=>(s.f[r](e,t),t),[])),s.u=e=>""+e+".min.js",s.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),l={},s.l=(e,t,r,o)=>{if(l[e])return void l[e].push(t);if(void 0!==r)for(var i,n,a=document.getElementsByTagName("script"),c=0;c<a.length;c++){var p=a[c];if(p.getAttribute("src")==e||p.getAttribute("data-webpack")=="@tsparticles/path-zig-zag:"+r){i=p;break}}i||(n=!0,(i=document.createElement("script")).charset="utf-8",s.nc&&i.setAttribute("nonce",s.nc),i.setAttribute("data-webpack","@tsparticles/path-zig-zag:"+r),i.src=e),l[e]=[t];var u=(t,r)=>{i.onerror=i.onload=null,clearTimeout(f);var o=l[e];if(delete l[e],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach(e=>e(r)),t)return t(r)},f=setTimeout(u.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=u.bind(null,i.onerror),i.onload=u.bind(null,i.onload),n&&document.head.appendChild(i)},s.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s.g.importScripts&&(u=s.g.location+"");var c,p,l,u,f=s.g.document;if(!u&&f&&(f.currentScript&&"SCRIPT"===f.currentScript.tagName.toUpperCase()&&(u=f.currentScript.src),!u)){var d=f.getElementsByTagName("script");if(d.length)for(var g=d.length-1;g>-1&&(!u||!/^http(s?):/.test(u));)u=d[g--].src}if(!u)throw Error("Automatic publicPath is not supported in this browser");s.p=u=u.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),r={952:0},s.f.j=(e,t)=>{var o=s.o(r,e)?r[e]:void 0;if(0!==o)if(o)t.push(o[2]);else{var i=new Promise((t,i)=>o=r[e]=[t,i]);t.push(o[2]=i);var n=s.p+s.u(e),a=Error();s.l(n,t=>{if(s.o(r,e)&&(0!==(o=r[e])&&(r[e]=void 0),o)){var i=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;a.message="Loading chunk "+e+` failed.
2
+ (`+i+": "+n+")",a.name="ChunkLoadError",a.type=i,a.request=n,o[1](a)}},"chunk-"+e,e)}},o=(e,t)=>{var o,i,[n,a,c]=t,p=0;if(n.some(e=>0!==r[e])){for(o in a)s.o(a,o)&&(s.m[o]=a[o]);c&&c(s)}for(e&&e(t);p<n.length;p++)i=n[p],s.o(r,i)&&r[i]&&r[i][0](),r[i]=0},(i=this.webpackChunk_tsparticles_path_zig_zag=this.webpackChunk_tsparticles_path_zig_zag||[]).forEach(o.bind(null,0)),i.push=o.bind(null,i.push.bind(i));var h={};s.r(h),s.d(h,{loadZigZagPath:()=>m,zigZagPathName:()=>b});let b="zigZagPathGenerator";async function m(e){e.checkVersion("4.0.0-beta.0"),await e.register(async e=>{let{ensureBaseMoverLoaded:t}=await Promise.resolve().then(s.t.bind(s,400,19));t(e),e.addPathGenerator?.(b,async e=>{let{ZigZagPathGenerator:t}=await s.e(38).then(s.bind(s,38));return new t(e)})})}return h})());
@@ -1,4 +1,5 @@
1
- import { type Container, type IDelta, type IMovePathGenerator, type Particle, type RangeValue, Vector } from "@tsparticles/engine";
1
+ import { type Container, type IDelta, type Particle, type RangeValue, Vector } from "@tsparticles/engine";
2
+ import { type IMovePathGenerator } from "@tsparticles/plugin-move";
2
3
  interface ZigZagParticle extends Particle {
3
4
  zigzag?: ZigZagData;
4
5
  }
@@ -12,10 +13,12 @@ interface IZigZagOptions {
12
13
  waveLength: RangeValue;
13
14
  }
14
15
  export declare class ZigZagPathGenerator implements IMovePathGenerator {
15
- options: IZigZagOptions;
16
- constructor();
16
+ readonly options: IZigZagOptions;
17
+ private readonly _container;
18
+ private readonly _res;
19
+ constructor(container: Container);
17
20
  generate(particle: ZigZagParticle, delta: IDelta): Vector;
18
- init(container: Container): void;
21
+ init(): void;
19
22
  reset(): void;
20
23
  update(): void;
21
24
  }
@@ -12,30 +12,39 @@
12
12
  exports.ZigZagPathGenerator = void 0;
13
13
  const engine_1 = require("@tsparticles/engine");
14
14
  const angularFrequencyFactor = 0.5, halfPI = Math.PI * engine_1.half;
15
+ const defaultOptions = {
16
+ waveHeight: { min: 0, max: 3 },
17
+ waveLength: { min: 0, max: 5 },
18
+ };
15
19
  class ZigZagPathGenerator {
16
- constructor() {
17
- this.options = {
18
- waveHeight: { min: 0, max: 3 },
19
- waveLength: { min: 0, max: 5 },
20
- };
20
+ options;
21
+ _container;
22
+ _res;
23
+ constructor(container) {
24
+ this._container = container;
25
+ this._res = engine_1.Vector.origin;
26
+ this.options = (0, engine_1.deepExtend)({}, defaultOptions);
21
27
  }
22
28
  generate(particle, delta) {
29
+ const { options } = this;
23
30
  particle.zigzag ??= {
24
31
  counter: (0, engine_1.getRandom)(),
25
- waveHeight: (0, engine_1.getRangeValue)(this.options.waveHeight),
26
- waveLength: (0, engine_1.getRangeValue)(this.options.waveLength),
32
+ waveHeight: (0, engine_1.getRangeValue)(options.waveHeight),
33
+ waveLength: (0, engine_1.getRangeValue)(options.waveLength),
27
34
  };
28
35
  const angularFrequency = (angularFrequencyFactor / particle.zigzag.waveLength) * delta.factor;
29
36
  particle.zigzag.counter += angularFrequency;
30
37
  const zigzagAngle = particle.zigzag.waveHeight * Math.sin(particle.zigzag.counter);
31
38
  particle.position.x += zigzagAngle * Math.cos(particle.velocity.angle + halfPI);
32
39
  particle.position.y += zigzagAngle * Math.sin(particle.velocity.angle + halfPI);
33
- return engine_1.Vector.origin;
40
+ this._res.x = 0;
41
+ this._res.y = 0;
42
+ return this._res;
34
43
  }
35
- init(container) {
36
- const options = container.actualOptions.particles.move.path.options;
37
- this.options.waveLength = options["waveLength"] ?? this.options.waveLength;
38
- this.options.waveHeight = options["waveHeight"] ?? this.options.waveHeight;
44
+ init() {
45
+ const sourceOptions = this._container.actualOptions.particles.move.path.options;
46
+ this.options.waveLength = sourceOptions["waveLength"] ?? this.options.waveLength;
47
+ this.options.waveHeight = sourceOptions["waveHeight"] ?? this.options.waveHeight;
39
48
  }
40
49
  reset() {
41
50
  }
package/umd/index.js CHANGED
@@ -47,10 +47,14 @@ var __importStar = (this && this.__importStar) || (function () {
47
47
  exports.loadZigZagPath = loadZigZagPath;
48
48
  exports.zigZagPathName = "zigZagPathGenerator";
49
49
  async function loadZigZagPath(engine) {
50
- engine.checkVersion("4.0.0-alpha.8");
50
+ engine.checkVersion("4.0.0-beta.0");
51
51
  await engine.register(async (e) => {
52
- const { ZigZagPathGenerator } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ZigZagPathGenerator.js"))) : new Promise((resolve_1, reject_1) => { require(["./ZigZagPathGenerator.js"], resolve_1, reject_1); }).then(__importStar));
53
- e.addPathGenerator(exports.zigZagPathName, new ZigZagPathGenerator());
52
+ const { ensureBaseMoverLoaded } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("@tsparticles/plugin-move"))) : new Promise((resolve_1, reject_1) => { require(["@tsparticles/plugin-move"], resolve_1, reject_1); }).then(__importStar));
53
+ ensureBaseMoverLoaded(e);
54
+ e.addPathGenerator?.(exports.zigZagPathName, async (container) => {
55
+ const { ZigZagPathGenerator } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./ZigZagPathGenerator.js"))) : new Promise((resolve_2, reject_2) => { require(["./ZigZagPathGenerator.js"], resolve_2, reject_2); }).then(__importStar));
56
+ return new ZigZagPathGenerator(container);
57
+ });
54
58
  });
55
59
  }
56
60
  });
package/588.min.js DELETED
@@ -1,2 +0,0 @@
1
- /*! For license information please see 588.min.js.LICENSE.txt */
2
- (this.webpackChunk_tsparticles_path_zig_zag=this.webpackChunk_tsparticles_path_zig_zag||[]).push([[588],{588(t,e,a){a.d(e,{ZigZagPathGenerator:()=>g});var i=a(303);const n=Math.PI*i.half;class g{constructor(){this.options={waveHeight:{min:0,max:3},waveLength:{min:0,max:5}}}generate(t,e){t.zigzag??={counter:(0,i.getRandom)(),waveHeight:(0,i.getRangeValue)(this.options.waveHeight),waveLength:(0,i.getRangeValue)(this.options.waveLength)};const a=.5/t.zigzag.waveLength*e.factor;t.zigzag.counter+=a;const g=t.zigzag.waveHeight*Math.sin(t.zigzag.counter);return t.position.x+=g*Math.cos(t.velocity.angle+n),t.position.y+=g*Math.sin(t.velocity.angle+n),i.Vector.origin}init(t){const e=t.actualOptions.particles.move.path.options;this.options.waveLength=e.waveLength??this.options.waveLength,this.options.waveHeight=e.waveHeight??this.options.waveHeight}reset(){}update(){}}}}]);
@@ -1 +0,0 @@
1
- /*! tsParticles Zig Zag Path v4.0.0-alpha.8 by Matteo Bruni */
@@ -1 +0,0 @@
1
- /*! tsParticles Zig Zag Path v4.0.0-alpha.8 by Matteo Bruni */