@tsparticles/path-branches 4.0.0-alpha.14 → 4.0.0-alpha.8
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/976.min.js +2 -0
- package/976.min.js.LICENSE.txt +1 -0
- package/browser/BranchesPathGenerator.js +4 -5
- package/browser/index.js +1 -1
- package/cjs/BranchesPathGenerator.js +4 -5
- package/cjs/index.js +1 -1
- package/dist_browser_BranchesPathGenerator_js.js +2 -2
- package/esm/BranchesPathGenerator.js +4 -5
- package/esm/index.js +1 -1
- package/package.json +2 -2
- package/report.html +1 -1
- package/tsparticles.path.branches.js +4 -16
- package/tsparticles.path.branches.min.js +2 -2
- package/tsparticles.path.branches.min.js.LICENSE.txt +1 -0
- package/umd/BranchesPathGenerator.js +3 -4
- package/umd/index.js +1 -1
- package/247.min.js +0 -1
package/976.min.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 976.min.js.LICENSE.txt */
|
|
2
|
+
(this.webpackChunk_tsparticles_path_branches=this.webpackChunk_tsparticles_path_branches||[]).push([[976],{976(e,n,t){t.d(n,{BranchesPathGenerator:()=>i});var a=t(303);const s={segmentLength:20,branchChance:.2,maxAngle:Math.PI/3,speedVariation:.3};class i{constructor(e){this._container=e,this.options={...s}}generate(e){const n=this.options;e.branching??={angle:(0,a.getRandom)()*Math.PI*2,remaining:n.segmentLength,speed:e.velocity.length};const t=e.branching;if(t.remaining<=0){const i=(0,a.getRandom)()<(n.branchChance??0),o=n.maxAngle??s.maxAngle,h=(2*(0,a.getRandom)()-1)*(i?o:.3*o);t.angle+=h,t.remaining=n.segmentLength;const c=1+(2*(0,a.getRandom)()-1)*(n.speedVariation??0);t.speed=e.velocity.length*c}t.remaining-=t.speed;const i=Math.cos(t.angle)*t.speed,o=Math.sin(t.angle)*t.speed;return e.velocity.x=0,e.velocity.y=0,a.Vector.create(i,o)}init(){const e=this._container.actualOptions.particles.move.path.options;this.options.segmentLength=e.segmentLength??this.options.segmentLength,this.options.branchChance=e.branchChance??this.options.branchChance,this.options.maxAngle=e.maxAngle??this.options.maxAngle,this.options.speedVariation=e.speedVariation??this.options.speedVariation}reset(e){delete e.branching}update(){}}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! tsParticles Branches Path v4.0.0-alpha.8 by Matteo Bruni */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Vector,
|
|
1
|
+
import { Vector, getRandom } from "@tsparticles/engine";
|
|
2
2
|
const defaultOptions = {
|
|
3
3
|
segmentLength: 20,
|
|
4
4
|
branchChance: 0.2,
|
|
@@ -6,8 +6,6 @@ const defaultOptions = {
|
|
|
6
6
|
speedVariation: 0.3,
|
|
7
7
|
};
|
|
8
8
|
export class BranchesPathGenerator {
|
|
9
|
-
options;
|
|
10
|
-
_container;
|
|
11
9
|
constructor(container) {
|
|
12
10
|
this._container = container;
|
|
13
11
|
this.options = { ...defaultOptions };
|
|
@@ -15,7 +13,7 @@ export class BranchesPathGenerator {
|
|
|
15
13
|
generate(p) {
|
|
16
14
|
const opts = this.options;
|
|
17
15
|
p.branching ??= {
|
|
18
|
-
angle: getRandom() *
|
|
16
|
+
angle: getRandom() * Math.PI * 2,
|
|
19
17
|
remaining: opts.segmentLength,
|
|
20
18
|
speed: p.velocity.length,
|
|
21
19
|
};
|
|
@@ -28,7 +26,8 @@ export class BranchesPathGenerator {
|
|
|
28
26
|
b.speed = p.velocity.length * speedFactor;
|
|
29
27
|
}
|
|
30
28
|
b.remaining -= b.speed;
|
|
31
|
-
const vx = Math.cos(b.angle) * b.speed
|
|
29
|
+
const vx = Math.cos(b.angle) * b.speed;
|
|
30
|
+
const vy = Math.sin(b.angle) * b.speed;
|
|
32
31
|
p.velocity.x = 0;
|
|
33
32
|
p.velocity.y = 0;
|
|
34
33
|
return Vector.create(vx, vy);
|
package/browser/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const branchingPathName = "branchesPathGenerator";
|
|
2
2
|
export async function loadBranchesPath(engine) {
|
|
3
|
-
engine.checkVersion("4.0.0-alpha.
|
|
3
|
+
engine.checkVersion("4.0.0-alpha.8");
|
|
4
4
|
await engine.register(e => {
|
|
5
5
|
e.addPathGenerator(branchingPathName, async (container) => {
|
|
6
6
|
const { BranchesPathGenerator } = await import("./BranchesPathGenerator.js");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Vector,
|
|
1
|
+
import { Vector, getRandom } from "@tsparticles/engine";
|
|
2
2
|
const defaultOptions = {
|
|
3
3
|
segmentLength: 20,
|
|
4
4
|
branchChance: 0.2,
|
|
@@ -6,8 +6,6 @@ const defaultOptions = {
|
|
|
6
6
|
speedVariation: 0.3,
|
|
7
7
|
};
|
|
8
8
|
export class BranchesPathGenerator {
|
|
9
|
-
options;
|
|
10
|
-
_container;
|
|
11
9
|
constructor(container) {
|
|
12
10
|
this._container = container;
|
|
13
11
|
this.options = { ...defaultOptions };
|
|
@@ -15,7 +13,7 @@ export class BranchesPathGenerator {
|
|
|
15
13
|
generate(p) {
|
|
16
14
|
const opts = this.options;
|
|
17
15
|
p.branching ??= {
|
|
18
|
-
angle: getRandom() *
|
|
16
|
+
angle: getRandom() * Math.PI * 2,
|
|
19
17
|
remaining: opts.segmentLength,
|
|
20
18
|
speed: p.velocity.length,
|
|
21
19
|
};
|
|
@@ -28,7 +26,8 @@ export class BranchesPathGenerator {
|
|
|
28
26
|
b.speed = p.velocity.length * speedFactor;
|
|
29
27
|
}
|
|
30
28
|
b.remaining -= b.speed;
|
|
31
|
-
const vx = Math.cos(b.angle) * b.speed
|
|
29
|
+
const vx = Math.cos(b.angle) * b.speed;
|
|
30
|
+
const vy = Math.sin(b.angle) * b.speed;
|
|
32
31
|
p.velocity.x = 0;
|
|
33
32
|
p.velocity.y = 0;
|
|
34
33
|
return Vector.create(vx, vy);
|
package/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const branchingPathName = "branchesPathGenerator";
|
|
2
2
|
export async function loadBranchesPath(engine) {
|
|
3
|
-
engine.checkVersion("4.0.0-alpha.
|
|
3
|
+
engine.checkVersion("4.0.0-alpha.8");
|
|
4
4
|
await engine.register(e => {
|
|
5
5
|
e.addPathGenerator(branchingPathName, async (container) => {
|
|
6
6
|
const { BranchesPathGenerator } = await import("./BranchesPathGenerator.js");
|
|
@@ -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.
|
|
7
|
+
* v4.0.0-alpha.8
|
|
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 */ BranchesPathGenerator: () => (/* binding */ BranchesPathGenerator)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n\nconst defaultOptions = {\n
|
|
26
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ BranchesPathGenerator: () => (/* binding */ BranchesPathGenerator)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n\nconst defaultOptions = {\n segmentLength: 20,\n branchChance: 0.2,\n maxAngle: Math.PI / 3,\n speedVariation: 0.3\n};\nclass BranchesPathGenerator {\n constructor(container) {\n this._container = container;\n this.options = {\n ...defaultOptions\n };\n }\n generate(p) {\n const opts = this.options;\n p.branching ??= {\n angle: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * Math.PI * 2,\n remaining: opts.segmentLength,\n speed: p.velocity.length\n };\n const b = p.branching;\n if (b.remaining <= 0) {\n const branch = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() < (opts.branchChance ?? 0),\n maxAngle = opts.maxAngle ?? defaultOptions.maxAngle,\n delta = ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * 2 - 1) * (branch ? maxAngle : maxAngle * 0.3);\n b.angle += delta;\n b.remaining = opts.segmentLength;\n const speedFactor = 1 + ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * 2 - 1) * (opts.speedVariation ?? 0);\n b.speed = p.velocity.length * speedFactor;\n }\n b.remaining -= b.speed;\n const vx = Math.cos(b.angle) * b.speed;\n const vy = Math.sin(b.angle) * b.speed;\n p.velocity.x = 0;\n p.velocity.y = 0;\n return _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.create(vx, vy);\n }\n init() {\n const source = this._container.actualOptions.particles.move.path.options;\n this.options.segmentLength = source[\"segmentLength\"] ?? this.options.segmentLength;\n this.options.branchChance = source[\"branchChance\"] ?? this.options.branchChance;\n this.options.maxAngle = source[\"maxAngle\"] ?? this.options.maxAngle;\n this.options.speedVariation = source[\"speedVariation\"] ?? this.options.speedVariation;\n }\n reset(p) {\n delete p.branching;\n }\n update() {}\n}\n\n//# sourceURL=webpack://@tsparticles/path-branches/./dist/browser/BranchesPathGenerator.js?\n}");
|
|
27
27
|
|
|
28
28
|
/***/ }
|
|
29
29
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Vector,
|
|
1
|
+
import { Vector, getRandom } from "@tsparticles/engine";
|
|
2
2
|
const defaultOptions = {
|
|
3
3
|
segmentLength: 20,
|
|
4
4
|
branchChance: 0.2,
|
|
@@ -6,8 +6,6 @@ const defaultOptions = {
|
|
|
6
6
|
speedVariation: 0.3,
|
|
7
7
|
};
|
|
8
8
|
export class BranchesPathGenerator {
|
|
9
|
-
options;
|
|
10
|
-
_container;
|
|
11
9
|
constructor(container) {
|
|
12
10
|
this._container = container;
|
|
13
11
|
this.options = { ...defaultOptions };
|
|
@@ -15,7 +13,7 @@ export class BranchesPathGenerator {
|
|
|
15
13
|
generate(p) {
|
|
16
14
|
const opts = this.options;
|
|
17
15
|
p.branching ??= {
|
|
18
|
-
angle: getRandom() *
|
|
16
|
+
angle: getRandom() * Math.PI * 2,
|
|
19
17
|
remaining: opts.segmentLength,
|
|
20
18
|
speed: p.velocity.length,
|
|
21
19
|
};
|
|
@@ -28,7 +26,8 @@ export class BranchesPathGenerator {
|
|
|
28
26
|
b.speed = p.velocity.length * speedFactor;
|
|
29
27
|
}
|
|
30
28
|
b.remaining -= b.speed;
|
|
31
|
-
const vx = Math.cos(b.angle) * b.speed
|
|
29
|
+
const vx = Math.cos(b.angle) * b.speed;
|
|
30
|
+
const vy = Math.sin(b.angle) * b.speed;
|
|
32
31
|
p.velocity.x = 0;
|
|
33
32
|
p.velocity.y = 0;
|
|
34
33
|
return Vector.create(vx, vy);
|
package/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const branchingPathName = "branchesPathGenerator";
|
|
2
2
|
export async function loadBranchesPath(engine) {
|
|
3
|
-
engine.checkVersion("4.0.0-alpha.
|
|
3
|
+
engine.checkVersion("4.0.0-alpha.8");
|
|
4
4
|
await engine.register(e => {
|
|
5
5
|
e.addPathGenerator(branchingPathName, async (container) => {
|
|
6
6
|
const { BranchesPathGenerator } = await import("./BranchesPathGenerator.js");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/path-branches",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.8",
|
|
4
4
|
"description": "tsParticles branches path",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"./package.json": "./package.json"
|
|
105
105
|
},
|
|
106
106
|
"dependencies": {
|
|
107
|
-
"@tsparticles/engine": "4.0.0-alpha.
|
|
107
|
+
"@tsparticles/engine": "4.0.0-alpha.8"
|
|
108
108
|
},
|
|
109
109
|
"type": "module"
|
|
110
110
|
}
|
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-branches [
|
|
6
|
+
<title>@tsparticles/path-branches [30 Jan 2026 at 12:27]</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.
|
|
7
|
+
* v4.0.0-alpha.8
|
|
8
8
|
*/
|
|
9
9
|
/*
|
|
10
10
|
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
|
@@ -34,7 +34,7 @@ return /******/ (() => { // webpackBootstrap
|
|
|
34
34
|
\*******************************/
|
|
35
35
|
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
36
36
|
|
|
37
|
-
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ branchingPathName: () => (/* binding */ branchingPathName),\n/* harmony export */ loadBranchesPath: () => (/* binding */ loadBranchesPath)\n/* harmony export */ });\nconst branchingPathName = \"branchesPathGenerator\";\nasync function loadBranchesPath(engine) {\n
|
|
37
|
+
eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ branchingPathName: () => (/* binding */ branchingPathName),\n/* harmony export */ loadBranchesPath: () => (/* binding */ loadBranchesPath)\n/* harmony export */ });\nconst branchingPathName = \"branchesPathGenerator\";\nasync function loadBranchesPath(engine) {\n engine.checkVersion(\"4.0.0-alpha.8\");\n await engine.register(e => {\n e.addPathGenerator(branchingPathName, async container => {\n const {\n BranchesPathGenerator\n } = await __webpack_require__.e(/*! import() */ \"dist_browser_BranchesPathGenerator_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./BranchesPathGenerator.js */ \"./dist/browser/BranchesPathGenerator.js\"));\n return new BranchesPathGenerator(container);\n });\n });\n}\n\n//# sourceURL=webpack://@tsparticles/path-branches/./dist/browser/index.js?\n}");
|
|
38
38
|
|
|
39
39
|
/***/ },
|
|
40
40
|
|
|
@@ -118,18 +118,6 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
|
|
|
118
118
|
/******/ };
|
|
119
119
|
/******/ })();
|
|
120
120
|
/******/
|
|
121
|
-
/******/ /* webpack/runtime/global */
|
|
122
|
-
/******/ (() => {
|
|
123
|
-
/******/ __webpack_require__.g = (function() {
|
|
124
|
-
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
125
|
-
/******/ try {
|
|
126
|
-
/******/ return this || new Function('return this')();
|
|
127
|
-
/******/ } catch (e) {
|
|
128
|
-
/******/ if (typeof window === 'object') return window;
|
|
129
|
-
/******/ }
|
|
130
|
-
/******/ })();
|
|
131
|
-
/******/ })();
|
|
132
|
-
/******/
|
|
133
121
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
134
122
|
/******/ (() => {
|
|
135
123
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
@@ -194,8 +182,8 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__tsparticles_engine__;
|
|
|
194
182
|
/******/ /* webpack/runtime/publicPath */
|
|
195
183
|
/******/ (() => {
|
|
196
184
|
/******/ var scriptUrl;
|
|
197
|
-
/******/ if (
|
|
198
|
-
/******/ var document =
|
|
185
|
+
/******/ if (globalThis.importScripts) scriptUrl = globalThis.location + "";
|
|
186
|
+
/******/ var document = globalThis.document;
|
|
199
187
|
/******/ if (!scriptUrl && document) {
|
|
200
188
|
/******/ if (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')
|
|
201
189
|
/******/ scriptUrl = document.currentScript.src;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
(
|
|
1
|
+
/*! For license information please see tsparticles.path.branches.min.js.LICENSE.txt */
|
|
2
|
+
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],r);else{var t="object"==typeof exports?r(require("@tsparticles/engine")):r(e.window);for(var a in t)("object"==typeof exports?exports:e)[a]=t[a]}}(this,(e=>(()=>{var r,t,a={303(r){r.exports=e}},o={};function n(e){var r=o[e];if(void 0!==r)return r.exports;var t=o[e]={exports:{}};return a[e](t,t.exports,n),t.exports}n.m=a,n.d=(e,r)=>{for(var t in r)n.o(r,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},n.f={},n.e=e=>Promise.all(Object.keys(n.f).reduce(((r,t)=>(n.f[t](e,r),r)),[])),n.u=e=>e+".min.js",n.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),r={},t="@tsparticles/path-branches:",n.l=(e,a,o,i)=>{if(r[e])r[e].push(a);else{var s,c;if(void 0!==o)for(var l=document.getElementsByTagName("script"),p=0;p<l.length;p++){var u=l[p];if(u.getAttribute("src")==e||u.getAttribute("data-webpack")==t+o){s=u;break}}s||(c=!0,(s=document.createElement("script")).charset="utf-8",n.nc&&s.setAttribute("nonce",n.nc),s.setAttribute("data-webpack",t+o),s.src=e),r[e]=[a];var d=(t,a)=>{s.onerror=s.onload=null,clearTimeout(h);var o=r[e];if(delete r[e],s.parentNode&&s.parentNode.removeChild(s),o&&o.forEach((e=>e(a))),t)return t(a)},h=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),c&&document.head.appendChild(s)}},n.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 r=globalThis.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var a=t.length-1;a>-1&&(!e||!/^http(s?):/.test(e));)e=t[a--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),n.p=e})(),(()=>{var e={736:0};n.f.j=(r,t)=>{var a=n.o(e,r)?e[r]:void 0;if(0!==a)if(a)t.push(a[2]);else{var o=new Promise(((t,o)=>a=e[r]=[t,o]));t.push(a[2]=o);var i=n.p+n.u(r),s=new Error;n.l(i,(t=>{if(n.o(e,r)&&(0!==(a=e[r])&&(e[r]=void 0),a)){var o=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;s.message="Loading chunk "+r+" failed.\n("+o+": "+i+")",s.name="ChunkLoadError",s.type=o,s.request=i,a[1](s)}}),"chunk-"+r,r)}};var r=(r,t)=>{var a,o,[i,s,c]=t,l=0;if(i.some((r=>0!==e[r]))){for(a in s)n.o(s,a)&&(n.m[a]=s[a]);if(c)c(n)}for(r&&r(t);l<i.length;l++)o=i[l],n.o(e,o)&&e[o]&&e[o][0](),e[o]=0},t=this.webpackChunk_tsparticles_path_branches=this.webpackChunk_tsparticles_path_branches||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})();var i={};n.r(i),n.d(i,{branchingPathName:()=>s,loadBranchesPath:()=>c});const s="branchesPathGenerator";async function c(e){e.checkVersion("4.0.0-alpha.8"),await e.register((e=>{e.addPathGenerator(s,(async e=>{const{BranchesPathGenerator:r}=await n.e(976).then(n.bind(n,976));return new r(e)}))}))}return i})()));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! tsParticles Branches Path v4.0.0-alpha.8 by Matteo Bruni */
|
|
@@ -18,8 +18,6 @@
|
|
|
18
18
|
speedVariation: 0.3,
|
|
19
19
|
};
|
|
20
20
|
class BranchesPathGenerator {
|
|
21
|
-
options;
|
|
22
|
-
_container;
|
|
23
21
|
constructor(container) {
|
|
24
22
|
this._container = container;
|
|
25
23
|
this.options = { ...defaultOptions };
|
|
@@ -27,7 +25,7 @@
|
|
|
27
25
|
generate(p) {
|
|
28
26
|
const opts = this.options;
|
|
29
27
|
p.branching ??= {
|
|
30
|
-
angle: (0, engine_1.getRandom)() *
|
|
28
|
+
angle: (0, engine_1.getRandom)() * Math.PI * 2,
|
|
31
29
|
remaining: opts.segmentLength,
|
|
32
30
|
speed: p.velocity.length,
|
|
33
31
|
};
|
|
@@ -40,7 +38,8 @@
|
|
|
40
38
|
b.speed = p.velocity.length * speedFactor;
|
|
41
39
|
}
|
|
42
40
|
b.remaining -= b.speed;
|
|
43
|
-
const vx = Math.cos(b.angle) * b.speed
|
|
41
|
+
const vx = Math.cos(b.angle) * b.speed;
|
|
42
|
+
const vy = Math.sin(b.angle) * b.speed;
|
|
44
43
|
p.velocity.x = 0;
|
|
45
44
|
p.velocity.y = 0;
|
|
46
45
|
return engine_1.Vector.create(vx, vy);
|
package/umd/index.js
CHANGED
|
@@ -47,7 +47,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
47
47
|
exports.loadBranchesPath = loadBranchesPath;
|
|
48
48
|
exports.branchingPathName = "branchesPathGenerator";
|
|
49
49
|
async function loadBranchesPath(engine) {
|
|
50
|
-
engine.checkVersion("4.0.0-alpha.
|
|
50
|
+
engine.checkVersion("4.0.0-alpha.8");
|
|
51
51
|
await engine.register(e => {
|
|
52
52
|
e.addPathGenerator(exports.branchingPathName, async (container) => {
|
|
53
53
|
const { BranchesPathGenerator } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./BranchesPathGenerator.js"))) : new Promise((resolve_1, reject_1) => { require(["./BranchesPathGenerator.js"], resolve_1, reject_1); }).then(__importStar));
|
package/247.min.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(this.webpackChunk_tsparticles_path_branches=this.webpackChunk_tsparticles_path_branches||[]).push([[247],{247(e,t,n){n.d(t,{BranchesPathGenerator:()=>s});var a=n(303);let i={segmentLength:20,branchChance:.2,maxAngle:Math.PI/3,speedVariation:.3};class s{options;_container;constructor(e){this._container=e,this.options={...i}}generate(e){let t=this.options;e.branching??={angle:(0,a.getRandom)()*a.doublePI,remaining:t.segmentLength,speed:e.velocity.length};let n=e.branching;if(n.remaining<=0){let s=(0,a.getRandom)()<(t.branchChance??0),h=t.maxAngle??i.maxAngle,o=(2*(0,a.getRandom)()-1)*(s?h:.3*h);n.angle+=o,n.remaining=t.segmentLength;let r=1+(2*(0,a.getRandom)()-1)*(t.speedVariation??0);n.speed=e.velocity.length*r}n.remaining-=n.speed;let s=Math.cos(n.angle)*n.speed,h=Math.sin(n.angle)*n.speed;return e.velocity.x=0,e.velocity.y=0,a.Vector.create(s,h)}init(){let e=this._container.actualOptions.particles.move.path.options;this.options.segmentLength=e.segmentLength??this.options.segmentLength,this.options.branchChance=e.branchChance??this.options.branchChance,this.options.maxAngle=e.maxAngle??this.options.maxAngle,this.options.speedVariation=e.speedVariation??this.options.speedVariation}reset(e){delete e.branching}update(){}}}}]);
|