@tsparticles/path-curves 4.0.0-beta.0 → 4.0.0-beta.10

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/680.min.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(this.webpackChunk_tsparticles_path_curves=this.webpackChunk_tsparticles_path_curves||[]).push([[680],{680(t,e,n){n.d(e,{CurvesPathGenerator:()=>s});var i=n(303);let o={rndFunc:null,period:100,nbHarmonics:2,attenHarmonics:.8,lowValue:-.03,highValue:.03};class s{options;_container;constructor(t){this._container=t,this.options=(0,i.deepExtend)({},o)}generate(t){if(!t.pathGen){let{options:e}=this;t.pathGen=function(t,e,n,o,s=0,r=1){let c=[],a=[],l=[],u=[],h=[],p=t??i.getRandom,d=0;n<1&&(n=1);for(let t=1;t<=n;++t)c[t]=p(),a[t]=p(),l[t]=1===t?1:l[t-1]*o,d+=l[t],u[t]=t/e,h[t]=p();return l.forEach((t,e)=>l[e]=t/d*(r-s)),()=>{let t,e,i=0;for(let o=n;o>=1;--o)t=h[o]+=u[o],h[o]>=1&&(t=h[o]-=1,c[o]=a[o],a[o]=p()),e=t**2*(3-2*t),i+=(c[o]*(1-e)+a[o]*e)*l[o];return i+s}}(e.rndFunc,e.period,e.nbHarmonics,e.attenHarmonics,e.lowValue,e.highValue)}return t.curveVelocity?(t.curveVelocity.length+=.01,t.curveVelocity.angle=(t.curveVelocity.angle+t.pathGen())%i.doublePI):(t.curveVelocity=i.Vector.origin,t.curveVelocity.length=.6*(0,i.getRandom)()+.8,t.curveVelocity.angle=(0,i.getRandom)()*i.doublePI),t.velocity.x=0,t.velocity.y=0,t.curveVelocity}init(){let t=this._container.actualOptions.particles.move.path.options;(0,i.isFunction)(t.rndFunc)?this.options.rndFunc=t.rndFunc:(0,i.isString)(t.rndFunc)&&(this.options.rndFunc=globalThis[t.rndFunc]??this.options.rndFunc),this.options.period=t.period??this.options.period,this.options.nbHarmonics=t.nbHarmonics??this.options.nbHarmonics,this.options.attenHarmonics=t.attenHarmonics??this.options.attenHarmonics,this.options.lowValue=t.lowValue??this.options.lowValue,this.options.highValue=t.highValue??this.options.highValue}reset(t){delete t.pathGen,delete t.curveVelocity}update(){}}}}]);
package/README.md CHANGED
@@ -8,6 +8,12 @@
8
8
 
9
9
  [tsParticles](https://github.com/tsparticles/tsparticles) path plugin for curves movement.
10
10
 
11
+ ## Quick checklist
12
+
13
+ 1. Install `@tsparticles/engine` (or use the CDN bundle below)
14
+ 2. Call the package loader function(s) before `tsParticles.load(...)`
15
+ 3. Apply the package options in your `tsParticles.load(...)` config
16
+
11
17
  ## How to use it
12
18
 
13
19
  ### CDN / Vanilla JS / jQuery
@@ -72,3 +78,34 @@ import { loadCurvesPath } from "@tsparticles/path-curves";
72
78
  await loadCurvesPath(tsParticles);
73
79
  })();
74
80
  ```
81
+
82
+ ## Option mapping
83
+
84
+ - Primary options key: `particles.move.path`
85
+ - Path generator name: `"curves"`
86
+
87
+ ```json
88
+ {
89
+ "particles": {
90
+ "move": {
91
+ "enable": true,
92
+ "path": {
93
+ "enable": true,
94
+ "generator": "curves",
95
+ "options": {}
96
+ }
97
+ }
98
+ }
99
+ }
100
+ ```
101
+
102
+ ## Common pitfalls
103
+
104
+ - Calling `tsParticles.load(...)` before `loadCurvesPath(...)`
105
+ - Verify required peer packages before enabling advanced options
106
+ - Change one option group at a time to isolate regressions quickly
107
+
108
+ ## Related docs
109
+
110
+ - All packages catalog: <https://github.com/tsparticles/tsparticles>
111
+ - Main docs: <https://particles.js.org/docs/>
package/browser/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  export const curvesPathName = "curvesPathGenerator";
2
2
  export async function loadCurvesPath(engine) {
3
- engine.checkVersion("4.0.0-beta.0");
4
- await engine.register(async (e) => {
3
+ engine.checkVersion("4.0.0-beta.10");
4
+ await engine.pluginManager.register(async (e) => {
5
5
  const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
6
  ensureBaseMoverLoaded(e);
7
- e.addPathGenerator?.(curvesPathName, async (container) => {
7
+ e.pluginManager.addPathGenerator?.(curvesPathName, async (container) => {
8
8
  const { CurvesPathGenerator } = await import("./CurvesPathGenerator.js");
9
9
  return new CurvesPathGenerator(container);
10
10
  });
package/cjs/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  export const curvesPathName = "curvesPathGenerator";
2
2
  export async function loadCurvesPath(engine) {
3
- engine.checkVersion("4.0.0-beta.0");
4
- await engine.register(async (e) => {
3
+ engine.checkVersion("4.0.0-beta.10");
4
+ await engine.pluginManager.register(async (e) => {
5
5
  const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
6
  ensureBaseMoverLoaded(e);
7
- e.addPathGenerator?.(curvesPathName, async (container) => {
7
+ e.pluginManager.addPathGenerator?.(curvesPathName, async (container) => {
8
8
  const { CurvesPathGenerator } = await import("./CurvesPathGenerator.js");
9
9
  return new CurvesPathGenerator(container);
10
10
  });
@@ -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-beta.0
7
+ * v4.0.0-beta.10
8
8
  */
9
9
  "use strict";
10
10
  /*
package/esm/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  export const curvesPathName = "curvesPathGenerator";
2
2
  export async function loadCurvesPath(engine) {
3
- engine.checkVersion("4.0.0-beta.0");
4
- await engine.register(async (e) => {
3
+ engine.checkVersion("4.0.0-beta.10");
4
+ await engine.pluginManager.register(async (e) => {
5
5
  const { ensureBaseMoverLoaded } = await import("@tsparticles/plugin-move");
6
6
  ensureBaseMoverLoaded(e);
7
- e.addPathGenerator?.(curvesPathName, async (container) => {
7
+ e.pluginManager.addPathGenerator?.(curvesPathName, async (container) => {
8
8
  const { CurvesPathGenerator } = await import("./CurvesPathGenerator.js");
9
9
  return new CurvesPathGenerator(container);
10
10
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/path-curves",
3
- "version": "4.0.0-beta.0",
3
+ "version": "4.0.0-beta.10",
4
4
  "description": "tsParticles curves path",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -98,14 +98,13 @@
98
98
  "browser": "./browser/index.js",
99
99
  "import": "./esm/index.js",
100
100
  "require": "./cjs/index.js",
101
- "umd": "./umd/index.js",
102
- "default": "./cjs/index.js"
101
+ "default": "./esm/index.js"
103
102
  },
104
103
  "./package.json": "./package.json"
105
104
  },
106
- "dependencies": {
107
- "@tsparticles/engine": "4.0.0-beta.0",
108
- "@tsparticles/plugin-move": "4.0.0-beta.0"
105
+ "peerDependencies": {
106
+ "@tsparticles/engine": "4.0.0-beta.10",
107
+ "@tsparticles/plugin-move": "4.0.0-beta.10"
109
108
  },
110
109
  "type": "module"
111
110
  }