@tsparticles/updater-orbit 4.1.3 → 4.2.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/browser/Options/Classes/Orbit.js +10 -25
- package/browser/Options/Classes/OrbitRotation.js +1 -4
- package/browser/OrbitUpdater.js +2 -5
- package/browser/index.js +1 -1
- package/browser/index.lazy.js +1 -1
- package/cjs/Options/Classes/Orbit.js +10 -25
- package/cjs/Options/Classes/OrbitRotation.js +1 -4
- package/cjs/OrbitUpdater.js +2 -5
- package/cjs/index.js +1 -1
- package/cjs/index.lazy.js +1 -1
- package/esm/Options/Classes/Orbit.js +10 -25
- package/esm/Options/Classes/OrbitRotation.js +1 -4
- package/esm/OrbitUpdater.js +2 -5
- package/esm/index.js +1 -1
- package/esm/index.lazy.js +1 -1
- package/package.json +2 -2
- package/report.html +1 -1
- package/tsparticles.updater.orbit.js +13 -34
- package/tsparticles.updater.orbit.min.js +1 -1
- package/types/Options/Classes/Orbit.d.ts +2 -3
- package/types/Options/Classes/OrbitRotation.d.ts +1 -1
|
@@ -1,38 +1,23 @@
|
|
|
1
|
-
import { AnimationOptions, OptionsColor, isNull,
|
|
1
|
+
import { AnimationOptions, OptionsColor, isNull, loadProperty, loadRangeProperty, } from "@tsparticles/engine";
|
|
2
2
|
import { OrbitRotation } from "./OrbitRotation.js";
|
|
3
3
|
export class Orbit {
|
|
4
|
-
animation;
|
|
4
|
+
animation = new AnimationOptions();
|
|
5
5
|
color;
|
|
6
|
-
enable;
|
|
7
|
-
opacity;
|
|
6
|
+
enable = false;
|
|
7
|
+
opacity = 1;
|
|
8
8
|
radius;
|
|
9
|
-
rotation;
|
|
10
|
-
width;
|
|
11
|
-
constructor() {
|
|
12
|
-
this.animation = new AnimationOptions();
|
|
13
|
-
this.enable = false;
|
|
14
|
-
this.opacity = 1;
|
|
15
|
-
this.rotation = new OrbitRotation();
|
|
16
|
-
this.width = 1;
|
|
17
|
-
}
|
|
9
|
+
rotation = new OrbitRotation();
|
|
10
|
+
width = 1;
|
|
18
11
|
load(data) {
|
|
19
12
|
if (isNull(data)) {
|
|
20
13
|
return;
|
|
21
14
|
}
|
|
22
15
|
this.animation.load(data.animation);
|
|
23
16
|
this.rotation.load(data.rotation);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
this.opacity = setRangeValue(data.opacity);
|
|
29
|
-
}
|
|
30
|
-
if (data.width !== undefined) {
|
|
31
|
-
this.width = setRangeValue(data.width);
|
|
32
|
-
}
|
|
33
|
-
if (data.radius !== undefined) {
|
|
34
|
-
this.radius = setRangeValue(data.radius);
|
|
35
|
-
}
|
|
17
|
+
loadProperty(this, "enable", data.enable);
|
|
18
|
+
loadRangeProperty(this, "opacity", data.opacity);
|
|
19
|
+
loadRangeProperty(this, "width", data.width);
|
|
20
|
+
loadRangeProperty(this, "radius", data.radius);
|
|
36
21
|
if (data.color !== undefined) {
|
|
37
22
|
this.color = OptionsColor.create(this.color, data.color);
|
|
38
23
|
}
|
package/browser/OrbitUpdater.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defaultOpacity, doublePI, getRangeValue, half, rangeColorToHsl, } from "@tsparticles/engine";
|
|
1
|
+
import { defaultOpacity, doublePI, getRangeValue, half, loadOptionProperty, rangeColorToHsl, } from "@tsparticles/engine";
|
|
2
2
|
import { Orbit } from "./Options/Classes/Orbit.js";
|
|
3
3
|
import { OrbitType } from "./Enums.js";
|
|
4
4
|
import { drawEllipse } from "./Utils.js";
|
|
@@ -63,10 +63,7 @@ export class OrbitUpdater {
|
|
|
63
63
|
return !particle.destroyed && !particle.spawning && !!orbitAnimations?.enable;
|
|
64
64
|
}
|
|
65
65
|
loadOptions(options, ...sources) {
|
|
66
|
-
options
|
|
67
|
-
for (const source of sources) {
|
|
68
|
-
options.orbit.load(source?.orbit);
|
|
69
|
-
}
|
|
66
|
+
loadOptionProperty(options, "orbit", Orbit, ...sources);
|
|
70
67
|
}
|
|
71
68
|
update(particle, delta) {
|
|
72
69
|
if (!this.isEnabled(particle)) {
|
package/browser/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OrbitUpdater } from "./OrbitUpdater.js";
|
|
2
2
|
export async function loadOrbitUpdater(engine) {
|
|
3
|
-
engine.checkVersion("4.1
|
|
3
|
+
engine.checkVersion("4.2.1");
|
|
4
4
|
await engine.pluginManager.register(e => {
|
|
5
5
|
e.pluginManager.addParticleUpdater("orbit", container => {
|
|
6
6
|
return Promise.resolve(new OrbitUpdater(e.pluginManager, container));
|
package/browser/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadOrbitUpdater(engine) {
|
|
2
|
-
engine.checkVersion("4.1
|
|
2
|
+
engine.checkVersion("4.2.1");
|
|
3
3
|
await engine.pluginManager.register(e => {
|
|
4
4
|
e.pluginManager.addParticleUpdater("orbit", async (container) => {
|
|
5
5
|
const { OrbitUpdater } = await import("./OrbitUpdater.js");
|
|
@@ -1,38 +1,23 @@
|
|
|
1
|
-
import { AnimationOptions, OptionsColor, isNull,
|
|
1
|
+
import { AnimationOptions, OptionsColor, isNull, loadProperty, loadRangeProperty, } from "@tsparticles/engine";
|
|
2
2
|
import { OrbitRotation } from "./OrbitRotation.js";
|
|
3
3
|
export class Orbit {
|
|
4
|
-
animation;
|
|
4
|
+
animation = new AnimationOptions();
|
|
5
5
|
color;
|
|
6
|
-
enable;
|
|
7
|
-
opacity;
|
|
6
|
+
enable = false;
|
|
7
|
+
opacity = 1;
|
|
8
8
|
radius;
|
|
9
|
-
rotation;
|
|
10
|
-
width;
|
|
11
|
-
constructor() {
|
|
12
|
-
this.animation = new AnimationOptions();
|
|
13
|
-
this.enable = false;
|
|
14
|
-
this.opacity = 1;
|
|
15
|
-
this.rotation = new OrbitRotation();
|
|
16
|
-
this.width = 1;
|
|
17
|
-
}
|
|
9
|
+
rotation = new OrbitRotation();
|
|
10
|
+
width = 1;
|
|
18
11
|
load(data) {
|
|
19
12
|
if (isNull(data)) {
|
|
20
13
|
return;
|
|
21
14
|
}
|
|
22
15
|
this.animation.load(data.animation);
|
|
23
16
|
this.rotation.load(data.rotation);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
this.opacity = setRangeValue(data.opacity);
|
|
29
|
-
}
|
|
30
|
-
if (data.width !== undefined) {
|
|
31
|
-
this.width = setRangeValue(data.width);
|
|
32
|
-
}
|
|
33
|
-
if (data.radius !== undefined) {
|
|
34
|
-
this.radius = setRangeValue(data.radius);
|
|
35
|
-
}
|
|
17
|
+
loadProperty(this, "enable", data.enable);
|
|
18
|
+
loadRangeProperty(this, "opacity", data.opacity);
|
|
19
|
+
loadRangeProperty(this, "width", data.width);
|
|
20
|
+
loadRangeProperty(this, "radius", data.radius);
|
|
36
21
|
if (data.color !== undefined) {
|
|
37
22
|
this.color = OptionsColor.create(this.color, data.color);
|
|
38
23
|
}
|
package/cjs/OrbitUpdater.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defaultOpacity, doublePI, getRangeValue, half, rangeColorToHsl, } from "@tsparticles/engine";
|
|
1
|
+
import { defaultOpacity, doublePI, getRangeValue, half, loadOptionProperty, rangeColorToHsl, } from "@tsparticles/engine";
|
|
2
2
|
import { Orbit } from "./Options/Classes/Orbit.js";
|
|
3
3
|
import { OrbitType } from "./Enums.js";
|
|
4
4
|
import { drawEllipse } from "./Utils.js";
|
|
@@ -63,10 +63,7 @@ export class OrbitUpdater {
|
|
|
63
63
|
return !particle.destroyed && !particle.spawning && !!orbitAnimations?.enable;
|
|
64
64
|
}
|
|
65
65
|
loadOptions(options, ...sources) {
|
|
66
|
-
options
|
|
67
|
-
for (const source of sources) {
|
|
68
|
-
options.orbit.load(source?.orbit);
|
|
69
|
-
}
|
|
66
|
+
loadOptionProperty(options, "orbit", Orbit, ...sources);
|
|
70
67
|
}
|
|
71
68
|
update(particle, delta) {
|
|
72
69
|
if (!this.isEnabled(particle)) {
|
package/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OrbitUpdater } from "./OrbitUpdater.js";
|
|
2
2
|
export async function loadOrbitUpdater(engine) {
|
|
3
|
-
engine.checkVersion("4.1
|
|
3
|
+
engine.checkVersion("4.2.1");
|
|
4
4
|
await engine.pluginManager.register(e => {
|
|
5
5
|
e.pluginManager.addParticleUpdater("orbit", container => {
|
|
6
6
|
return Promise.resolve(new OrbitUpdater(e.pluginManager, container));
|
package/cjs/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadOrbitUpdater(engine) {
|
|
2
|
-
engine.checkVersion("4.1
|
|
2
|
+
engine.checkVersion("4.2.1");
|
|
3
3
|
await engine.pluginManager.register(e => {
|
|
4
4
|
e.pluginManager.addParticleUpdater("orbit", async (container) => {
|
|
5
5
|
const { OrbitUpdater } = await import("./OrbitUpdater.js");
|
|
@@ -1,38 +1,23 @@
|
|
|
1
|
-
import { AnimationOptions, OptionsColor, isNull,
|
|
1
|
+
import { AnimationOptions, OptionsColor, isNull, loadProperty, loadRangeProperty, } from "@tsparticles/engine";
|
|
2
2
|
import { OrbitRotation } from "./OrbitRotation.js";
|
|
3
3
|
export class Orbit {
|
|
4
|
-
animation;
|
|
4
|
+
animation = new AnimationOptions();
|
|
5
5
|
color;
|
|
6
|
-
enable;
|
|
7
|
-
opacity;
|
|
6
|
+
enable = false;
|
|
7
|
+
opacity = 1;
|
|
8
8
|
radius;
|
|
9
|
-
rotation;
|
|
10
|
-
width;
|
|
11
|
-
constructor() {
|
|
12
|
-
this.animation = new AnimationOptions();
|
|
13
|
-
this.enable = false;
|
|
14
|
-
this.opacity = 1;
|
|
15
|
-
this.rotation = new OrbitRotation();
|
|
16
|
-
this.width = 1;
|
|
17
|
-
}
|
|
9
|
+
rotation = new OrbitRotation();
|
|
10
|
+
width = 1;
|
|
18
11
|
load(data) {
|
|
19
12
|
if (isNull(data)) {
|
|
20
13
|
return;
|
|
21
14
|
}
|
|
22
15
|
this.animation.load(data.animation);
|
|
23
16
|
this.rotation.load(data.rotation);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
this.opacity = setRangeValue(data.opacity);
|
|
29
|
-
}
|
|
30
|
-
if (data.width !== undefined) {
|
|
31
|
-
this.width = setRangeValue(data.width);
|
|
32
|
-
}
|
|
33
|
-
if (data.radius !== undefined) {
|
|
34
|
-
this.radius = setRangeValue(data.radius);
|
|
35
|
-
}
|
|
17
|
+
loadProperty(this, "enable", data.enable);
|
|
18
|
+
loadRangeProperty(this, "opacity", data.opacity);
|
|
19
|
+
loadRangeProperty(this, "width", data.width);
|
|
20
|
+
loadRangeProperty(this, "radius", data.radius);
|
|
36
21
|
if (data.color !== undefined) {
|
|
37
22
|
this.color = OptionsColor.create(this.color, data.color);
|
|
38
23
|
}
|
package/esm/OrbitUpdater.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defaultOpacity, doublePI, getRangeValue, half, rangeColorToHsl, } from "@tsparticles/engine";
|
|
1
|
+
import { defaultOpacity, doublePI, getRangeValue, half, loadOptionProperty, rangeColorToHsl, } from "@tsparticles/engine";
|
|
2
2
|
import { Orbit } from "./Options/Classes/Orbit.js";
|
|
3
3
|
import { OrbitType } from "./Enums.js";
|
|
4
4
|
import { drawEllipse } from "./Utils.js";
|
|
@@ -63,10 +63,7 @@ export class OrbitUpdater {
|
|
|
63
63
|
return !particle.destroyed && !particle.spawning && !!orbitAnimations?.enable;
|
|
64
64
|
}
|
|
65
65
|
loadOptions(options, ...sources) {
|
|
66
|
-
options
|
|
67
|
-
for (const source of sources) {
|
|
68
|
-
options.orbit.load(source?.orbit);
|
|
69
|
-
}
|
|
66
|
+
loadOptionProperty(options, "orbit", Orbit, ...sources);
|
|
70
67
|
}
|
|
71
68
|
update(particle, delta) {
|
|
72
69
|
if (!this.isEnabled(particle)) {
|
package/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OrbitUpdater } from "./OrbitUpdater.js";
|
|
2
2
|
export async function loadOrbitUpdater(engine) {
|
|
3
|
-
engine.checkVersion("4.1
|
|
3
|
+
engine.checkVersion("4.2.1");
|
|
4
4
|
await engine.pluginManager.register(e => {
|
|
5
5
|
e.pluginManager.addParticleUpdater("orbit", container => {
|
|
6
6
|
return Promise.resolve(new OrbitUpdater(e.pluginManager, container));
|
package/esm/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadOrbitUpdater(engine) {
|
|
2
|
-
engine.checkVersion("4.1
|
|
2
|
+
engine.checkVersion("4.2.1");
|
|
3
3
|
await engine.pluginManager.register(e => {
|
|
4
4
|
e.pluginManager.addParticleUpdater("orbit", async (container) => {
|
|
5
5
|
const { OrbitUpdater } = await import("./OrbitUpdater.js");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/updater-orbit",
|
|
3
|
-
"version": "4.1
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"description": "tsParticles particles orbit updater",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"./package.json": "./package.json"
|
|
108
108
|
},
|
|
109
109
|
"peerDependencies": {
|
|
110
|
-
"@tsparticles/engine": "4.1
|
|
110
|
+
"@tsparticles/engine": "4.2.1"
|
|
111
111
|
},
|
|
112
112
|
"publishConfig": {
|
|
113
113
|
"access": "public"
|
package/report.html
CHANGED
|
@@ -4930,7 +4930,7 @@ var drawChart = (function (exports) {
|
|
|
4930
4930
|
</script>
|
|
4931
4931
|
<script>
|
|
4932
4932
|
/*<!--*/
|
|
4933
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"tsparticles.updater.orbit.js","children":[{"name":"dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"
|
|
4933
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"tsparticles.updater.orbit.js","children":[{"name":"dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"ac0231b7-1","name":"OrbitRotation.js"},{"uid":"ac0231b7-3","name":"Orbit.js"}]},{"uid":"ac0231b7-5","name":"Enums.js"},{"uid":"ac0231b7-7","name":"Utils.js"},{"uid":"ac0231b7-9","name":"OrbitUpdater.js"},{"uid":"ac0231b7-11","name":"index.js"},{"uid":"ac0231b7-13","name":"browser.js"}]}]}],"isRoot":true},"nodeParts":{"ac0231b7-1":{"renderedLength":220,"gzipLength":0,"brotliLength":0,"metaUid":"ac0231b7-0"},"ac0231b7-3":{"renderedLength":815,"gzipLength":0,"brotliLength":0,"metaUid":"ac0231b7-2"},"ac0231b7-5":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"ac0231b7-4"},"ac0231b7-7":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"ac0231b7-6"},"ac0231b7-9":{"renderedLength":3415,"gzipLength":0,"brotliLength":0,"metaUid":"ac0231b7-8"},"ac0231b7-11":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"ac0231b7-10"},"ac0231b7-13":{"renderedLength":175,"gzipLength":0,"brotliLength":0,"metaUid":"ac0231b7-12"}},"nodeMetas":{"ac0231b7-0":{"id":"/dist/browser/Options/Classes/OrbitRotation.js","moduleParts":{"tsparticles.updater.orbit.js":"ac0231b7-1"},"imported":[{"uid":"ac0231b7-14"}],"importedBy":[{"uid":"ac0231b7-2"}]},"ac0231b7-2":{"id":"/dist/browser/Options/Classes/Orbit.js","moduleParts":{"tsparticles.updater.orbit.js":"ac0231b7-3"},"imported":[{"uid":"ac0231b7-14"},{"uid":"ac0231b7-0"}],"importedBy":[{"uid":"ac0231b7-8"}]},"ac0231b7-4":{"id":"/dist/browser/Enums.js","moduleParts":{"tsparticles.updater.orbit.js":"ac0231b7-5"},"imported":[],"importedBy":[{"uid":"ac0231b7-8"}]},"ac0231b7-6":{"id":"/dist/browser/Utils.js","moduleParts":{"tsparticles.updater.orbit.js":"ac0231b7-7"},"imported":[{"uid":"ac0231b7-14"}],"importedBy":[{"uid":"ac0231b7-8"}]},"ac0231b7-8":{"id":"/dist/browser/OrbitUpdater.js","moduleParts":{"tsparticles.updater.orbit.js":"ac0231b7-9"},"imported":[{"uid":"ac0231b7-14"},{"uid":"ac0231b7-2"},{"uid":"ac0231b7-4"},{"uid":"ac0231b7-6"}],"importedBy":[{"uid":"ac0231b7-10"}]},"ac0231b7-10":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.updater.orbit.js":"ac0231b7-11"},"imported":[{"uid":"ac0231b7-8"}],"importedBy":[{"uid":"ac0231b7-12"}]},"ac0231b7-12":{"id":"/dist/browser/browser.js","moduleParts":{"tsparticles.updater.orbit.js":"ac0231b7-13"},"imported":[{"uid":"ac0231b7-10"}],"importedBy":[],"isEntry":true},"ac0231b7-14":{"id":"@tsparticles/engine","moduleParts":{},"imported":[],"importedBy":[{"uid":"ac0231b7-8"},{"uid":"ac0231b7-2"},{"uid":"ac0231b7-6"},{"uid":"ac0231b7-0"}],"isExternal":true}},"env":{"rollup":"4.62.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4934
4934
|
|
|
4935
4935
|
const run = () => {
|
|
4936
4936
|
const width = window.innerWidth;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
(function(g){g.__tsParticlesInternals=g.__tsParticlesInternals||{};g.__tsParticlesInternals.bundles=g.__tsParticlesInternals.bundles||{};g.__tsParticlesInternals.effects=g.__tsParticlesInternals.effects||{};g.__tsParticlesInternals.engine=g.__tsParticlesInternals.engine||{};g.__tsParticlesInternals.interactions=g.__tsParticlesInternals.interactions||{};g.__tsParticlesInternals.palettes=g.__tsParticlesInternals.palettes||{};g.__tsParticlesInternals.paths=g.__tsParticlesInternals.paths||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins.emittersShapes=g.__tsParticlesInternals.plugins.emittersShapes||{};g.__tsParticlesInternals.presets=g.__tsParticlesInternals.presets||{};g.__tsParticlesInternals.shapes=g.__tsParticlesInternals.shapes||{};g.__tsParticlesInternals.updaters=g.__tsParticlesInternals.updaters||{};g.__tsParticlesInternals.utils=g.__tsParticlesInternals.utils||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas.utils=g.__tsParticlesInternals.canvas.utils||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path.utils=g.__tsParticlesInternals.path.utils||{};var __tsProxyFactory=typeof Proxy!=="undefined"?function(obj){return new Proxy(obj,{get:function(target,key){if(!(key in target)){target[key]={};}return target[key];}});}:function(obj){return obj;};g.__tsParticlesInternals.bundles=__tsProxyFactory(g.__tsParticlesInternals.bundles);g.__tsParticlesInternals.effects=__tsProxyFactory(g.__tsParticlesInternals.effects);g.__tsParticlesInternals.interactions=__tsProxyFactory(g.__tsParticlesInternals.interactions);g.__tsParticlesInternals.palettes=__tsProxyFactory(g.__tsParticlesInternals.palettes);g.__tsParticlesInternals.paths=__tsProxyFactory(g.__tsParticlesInternals.paths);g.__tsParticlesInternals.plugins=__tsProxyFactory(g.__tsParticlesInternals.plugins);g.__tsParticlesInternals.plugins.emittersShapes=__tsProxyFactory(g.__tsParticlesInternals.plugins.emittersShapes);g.__tsParticlesInternals.presets=__tsProxyFactory(g.__tsParticlesInternals.presets);g.__tsParticlesInternals.shapes=__tsProxyFactory(g.__tsParticlesInternals.shapes);g.__tsParticlesInternals.updaters=__tsProxyFactory(g.__tsParticlesInternals.updaters);g.__tsParticlesInternals.utils=__tsProxyFactory(g.__tsParticlesInternals.utils);g.__tsParticlesInternals.canvas=__tsProxyFactory(g.__tsParticlesInternals.canvas);g.__tsParticlesInternals.path=__tsProxyFactory(g.__tsParticlesInternals.path);g.tsparticlesInternalExports=g.tsparticlesInternalExports||{};})(typeof globalThis!=="undefined"?globalThis:typeof window!=="undefined"?window:this);
|
|
2
|
-
/* Updater v4.1
|
|
2
|
+
/* Updater v4.2.1 */
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tsparticles/engine')) :
|
|
5
5
|
typeof define === 'function' && define.amd ? define(['exports', '@tsparticles/engine'], factory) :
|
|
@@ -7,10 +7,7 @@
|
|
|
7
7
|
})(this, (function (exports, engine) { 'use strict';
|
|
8
8
|
|
|
9
9
|
class OrbitRotation extends engine.ValueWithRandom {
|
|
10
|
-
|
|
11
|
-
super();
|
|
12
|
-
this.value = 45;
|
|
13
|
-
}
|
|
10
|
+
value = 45;
|
|
14
11
|
load(data) {
|
|
15
12
|
if (engine.isNull(data)) {
|
|
16
13
|
return;
|
|
@@ -20,38 +17,23 @@
|
|
|
20
17
|
}
|
|
21
18
|
|
|
22
19
|
class Orbit {
|
|
23
|
-
animation;
|
|
20
|
+
animation = new engine.AnimationOptions();
|
|
24
21
|
color;
|
|
25
|
-
enable;
|
|
26
|
-
opacity;
|
|
22
|
+
enable = false;
|
|
23
|
+
opacity = 1;
|
|
27
24
|
radius;
|
|
28
|
-
rotation;
|
|
29
|
-
width;
|
|
30
|
-
constructor() {
|
|
31
|
-
this.animation = new engine.AnimationOptions();
|
|
32
|
-
this.enable = false;
|
|
33
|
-
this.opacity = 1;
|
|
34
|
-
this.rotation = new OrbitRotation();
|
|
35
|
-
this.width = 1;
|
|
36
|
-
}
|
|
25
|
+
rotation = new OrbitRotation();
|
|
26
|
+
width = 1;
|
|
37
27
|
load(data) {
|
|
38
28
|
if (engine.isNull(data)) {
|
|
39
29
|
return;
|
|
40
30
|
}
|
|
41
31
|
this.animation.load(data.animation);
|
|
42
32
|
this.rotation.load(data.rotation);
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
this.opacity = engine.setRangeValue(data.opacity);
|
|
48
|
-
}
|
|
49
|
-
if (data.width !== undefined) {
|
|
50
|
-
this.width = engine.setRangeValue(data.width);
|
|
51
|
-
}
|
|
52
|
-
if (data.radius !== undefined) {
|
|
53
|
-
this.radius = engine.setRangeValue(data.radius);
|
|
54
|
-
}
|
|
33
|
+
engine.loadProperty(this, "enable", data.enable);
|
|
34
|
+
engine.loadRangeProperty(this, "opacity", data.opacity);
|
|
35
|
+
engine.loadRangeProperty(this, "width", data.width);
|
|
36
|
+
engine.loadRangeProperty(this, "radius", data.radius);
|
|
55
37
|
if (data.color !== undefined) {
|
|
56
38
|
this.color = engine.OptionsColor.create(this.color, data.color);
|
|
57
39
|
}
|
|
@@ -141,10 +123,7 @@
|
|
|
141
123
|
return !particle.destroyed && !particle.spawning && !!orbitAnimations?.enable;
|
|
142
124
|
}
|
|
143
125
|
loadOptions(options, ...sources) {
|
|
144
|
-
options
|
|
145
|
-
for (const source of sources) {
|
|
146
|
-
options.orbit.load(source?.orbit);
|
|
147
|
-
}
|
|
126
|
+
engine.loadOptionProperty(options, "orbit", Orbit, ...sources);
|
|
148
127
|
}
|
|
149
128
|
update(particle, delta) {
|
|
150
129
|
if (!this.isEnabled(particle)) {
|
|
@@ -156,7 +135,7 @@
|
|
|
156
135
|
}
|
|
157
136
|
|
|
158
137
|
async function loadOrbitUpdater(engine) {
|
|
159
|
-
engine.checkVersion("4.1
|
|
138
|
+
engine.checkVersion("4.2.1");
|
|
160
139
|
await engine.pluginManager.register(e => {
|
|
161
140
|
e.pluginManager.addParticleUpdater("orbit", container => {
|
|
162
141
|
return Promise.resolve(new OrbitUpdater(e.pluginManager, container));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(t){t.__tsParticlesInternals=t.__tsParticlesInternals||{},t.__tsParticlesInternals.bundles=t.__tsParticlesInternals.bundles||{},t.__tsParticlesInternals.effects=t.__tsParticlesInternals.effects||{},t.__tsParticlesInternals.engine=t.__tsParticlesInternals.engine||{},t.__tsParticlesInternals.interactions=t.__tsParticlesInternals.interactions||{},t.__tsParticlesInternals.palettes=t.__tsParticlesInternals.palettes||{},t.__tsParticlesInternals.paths=t.__tsParticlesInternals.paths||{},t.__tsParticlesInternals.plugins=t.__tsParticlesInternals.plugins||{},t.__tsParticlesInternals.plugins=t.__tsParticlesInternals.plugins||{},t.__tsParticlesInternals.plugins.emittersShapes=t.__tsParticlesInternals.plugins.emittersShapes||{},t.__tsParticlesInternals.presets=t.__tsParticlesInternals.presets||{},t.__tsParticlesInternals.shapes=t.__tsParticlesInternals.shapes||{},t.__tsParticlesInternals.updaters=t.__tsParticlesInternals.updaters||{},t.__tsParticlesInternals.utils=t.__tsParticlesInternals.utils||{},t.__tsParticlesInternals.canvas=t.__tsParticlesInternals.canvas||{},t.__tsParticlesInternals.canvas=t.__tsParticlesInternals.canvas||{},t.__tsParticlesInternals.canvas.utils=t.__tsParticlesInternals.canvas.utils||{},t.__tsParticlesInternals.path=t.__tsParticlesInternals.path||{},t.__tsParticlesInternals.path=t.__tsParticlesInternals.path||{},t.__tsParticlesInternals.path.utils=t.__tsParticlesInternals.path.utils||{};var s="undefined"!=typeof Proxy?function(t){return new Proxy(t,{get:function(t,s){return s in t||(t[s]={}),t[s]}})}:function(t){return t};t.__tsParticlesInternals.bundles=s(t.__tsParticlesInternals.bundles),t.__tsParticlesInternals.effects=s(t.__tsParticlesInternals.effects),t.__tsParticlesInternals.interactions=s(t.__tsParticlesInternals.interactions),t.__tsParticlesInternals.palettes=s(t.__tsParticlesInternals.palettes),t.__tsParticlesInternals.paths=s(t.__tsParticlesInternals.paths),t.__tsParticlesInternals.plugins=s(t.__tsParticlesInternals.plugins),t.__tsParticlesInternals.plugins.emittersShapes=s(t.__tsParticlesInternals.plugins.emittersShapes),t.__tsParticlesInternals.presets=s(t.__tsParticlesInternals.presets),t.__tsParticlesInternals.shapes=s(t.__tsParticlesInternals.shapes),t.__tsParticlesInternals.updaters=s(t.__tsParticlesInternals.updaters),t.__tsParticlesInternals.utils=s(t.__tsParticlesInternals.utils),t.__tsParticlesInternals.canvas=s(t.__tsParticlesInternals.canvas),t.__tsParticlesInternals.path=s(t.__tsParticlesInternals.path),t.tsparticlesInternalExports=t.tsparticlesInternalExports||{}}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:this),function(t,s){"object"==typeof exports&&"undefined"!=typeof module?s(exports,require("@tsparticles/engine")):"function"==typeof define&&define.amd?define(["exports","@tsparticles/engine"],s):s(((t="undefined"!=typeof globalThis?globalThis:t||self).__tsParticlesInternals=t.__tsParticlesInternals||{},t.__tsParticlesInternals.updaters=t.__tsParticlesInternals.updaters||{},t.__tsParticlesInternals.updaters.orbit=t.__tsParticlesInternals.updaters.orbit||{}),t.__tsParticlesInternals.engine)}(this,function(t,s){"use strict";class e extends s.ValueWithRandom{
|
|
1
|
+
!function(t){t.__tsParticlesInternals=t.__tsParticlesInternals||{},t.__tsParticlesInternals.bundles=t.__tsParticlesInternals.bundles||{},t.__tsParticlesInternals.effects=t.__tsParticlesInternals.effects||{},t.__tsParticlesInternals.engine=t.__tsParticlesInternals.engine||{},t.__tsParticlesInternals.interactions=t.__tsParticlesInternals.interactions||{},t.__tsParticlesInternals.palettes=t.__tsParticlesInternals.palettes||{},t.__tsParticlesInternals.paths=t.__tsParticlesInternals.paths||{},t.__tsParticlesInternals.plugins=t.__tsParticlesInternals.plugins||{},t.__tsParticlesInternals.plugins=t.__tsParticlesInternals.plugins||{},t.__tsParticlesInternals.plugins.emittersShapes=t.__tsParticlesInternals.plugins.emittersShapes||{},t.__tsParticlesInternals.presets=t.__tsParticlesInternals.presets||{},t.__tsParticlesInternals.shapes=t.__tsParticlesInternals.shapes||{},t.__tsParticlesInternals.updaters=t.__tsParticlesInternals.updaters||{},t.__tsParticlesInternals.utils=t.__tsParticlesInternals.utils||{},t.__tsParticlesInternals.canvas=t.__tsParticlesInternals.canvas||{},t.__tsParticlesInternals.canvas=t.__tsParticlesInternals.canvas||{},t.__tsParticlesInternals.canvas.utils=t.__tsParticlesInternals.canvas.utils||{},t.__tsParticlesInternals.path=t.__tsParticlesInternals.path||{},t.__tsParticlesInternals.path=t.__tsParticlesInternals.path||{},t.__tsParticlesInternals.path.utils=t.__tsParticlesInternals.path.utils||{};var s="undefined"!=typeof Proxy?function(t){return new Proxy(t,{get:function(t,s){return s in t||(t[s]={}),t[s]}})}:function(t){return t};t.__tsParticlesInternals.bundles=s(t.__tsParticlesInternals.bundles),t.__tsParticlesInternals.effects=s(t.__tsParticlesInternals.effects),t.__tsParticlesInternals.interactions=s(t.__tsParticlesInternals.interactions),t.__tsParticlesInternals.palettes=s(t.__tsParticlesInternals.palettes),t.__tsParticlesInternals.paths=s(t.__tsParticlesInternals.paths),t.__tsParticlesInternals.plugins=s(t.__tsParticlesInternals.plugins),t.__tsParticlesInternals.plugins.emittersShapes=s(t.__tsParticlesInternals.plugins.emittersShapes),t.__tsParticlesInternals.presets=s(t.__tsParticlesInternals.presets),t.__tsParticlesInternals.shapes=s(t.__tsParticlesInternals.shapes),t.__tsParticlesInternals.updaters=s(t.__tsParticlesInternals.updaters),t.__tsParticlesInternals.utils=s(t.__tsParticlesInternals.utils),t.__tsParticlesInternals.canvas=s(t.__tsParticlesInternals.canvas),t.__tsParticlesInternals.path=s(t.__tsParticlesInternals.path),t.tsparticlesInternalExports=t.tsparticlesInternalExports||{}}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:this),function(t,s){"object"==typeof exports&&"undefined"!=typeof module?s(exports,require("@tsparticles/engine")):"function"==typeof define&&define.amd?define(["exports","@tsparticles/engine"],s):s(((t="undefined"!=typeof globalThis?globalThis:t||self).__tsParticlesInternals=t.__tsParticlesInternals||{},t.__tsParticlesInternals.updaters=t.__tsParticlesInternals.updaters||{},t.__tsParticlesInternals.updaters.orbit=t.__tsParticlesInternals.updaters.orbit||{}),t.__tsParticlesInternals.engine)}(this,function(t,s){"use strict";class e extends s.ValueWithRandom{value=45;load(t){s.isNull(t)||super.load(t)}}class a{animation=new s.AnimationOptions;color;enable=!1;opacity=1;radius;rotation=new e;width=1;load(t){s.isNull(t)||(this.animation.load(t.animation),this.rotation.load(t.rotation),s.loadProperty(this,"enable",t.enable),s.loadRangeProperty(this,"opacity",t.opacity),s.loadRangeProperty(this,"width",t.width),s.loadRangeProperty(this,"radius",t.radius),void 0!==t.color&&(this.color=s.OptionsColor.create(this.color,t.color)))}}var n;!function(t){t.front="front",t.back="back"}(n||(n={}));const r=Math.PI*s.half,i=Math.PI+r;class l{#t;#s;constructor(t,s){this.#s=t,this.#t=s}afterDraw(t){const s=t.options.orbit;s?.enable&&this.drawOrbit(t,n.front)}beforeDraw(t){const s=t.options.orbit;s?.enable&&this.drawOrbit(t,n.back)}drawOrbit(t,e){const a=this.#t;let l,o;switch(e){case n.back:l=r,o=i;break;case n.front:l=i,o=r;break;default:l=0,o=s.doublePI}a.canvas.render.draw(e=>{!function(t,e,a,n,r,i,l,o,c,_){if(l<=0)return;const p=a.getPosition();n&&(e.strokeStyle=s.getStyleFromHsl(n,t.hdr,i)),e.lineWidth=l;const d=s.degToRad(o);e.beginPath(),e.ellipse(p.x,p.y,r*s.half,r*s.double,d,c,_),e.stroke()}(a,e,t,t.orbitColor??t.getFillColor(),t.retina.orbitRadius??a.retina.orbitRadius??t.getRadius(),t.orbitOpacity??s.defaultOpacity,t.orbitWidth??1,(t.orbitRotation??0)*a.retina.pixelRatio,l,o)})}init(t){const e=this.#t,a=t.options.orbit;a?.enable&&(t.orbitRotation=s.getRangeValue(a.rotation.value),t.orbitColor=s.rangeColorToHsl(this.#s,a.color),t.retina.orbitRadius=void 0!==a.radius?s.getRangeValue(a.radius)*e.retina.pixelRatio:void 0,e.retina.orbitRadius=t.retina.orbitRadius,t.orbitAnimationSpeed=a.animation.enable?s.getRangeValue(a.animation.speed):0,t.orbitWidth=s.getRangeValue(a.width),t.orbitOpacity=s.getRangeValue(a.opacity))}isEnabled(t){const s=t.options.orbit?.animation;return!t.destroyed&&!t.spawning&&!!s?.enable}loadOptions(t,...e){s.loadOptionProperty(t,"orbit",a,...e)}update(t,e){this.isEnabled(t)&&(t.orbitRotation??=0,t.orbitRotation+=(t.orbitAnimationSpeed??0/s.doublePI)*e.factor)}}async function o(t){t.checkVersion("4.2.1"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("orbit",s=>Promise.resolve(new l(t.pluginManager,s)))})}const c=globalThis;c.__tsParticlesInternals=c.__tsParticlesInternals??{},c.loadOrbitUpdater=o,t.loadOrbitUpdater=o}),Object.assign(globalThis.window||globalThis,{loadOrbitUpdater:(globalThis.__tsParticlesInternals.updaters.orbit||{}).loadOrbitUpdater}),delete(globalThis.window||globalThis).tsparticlesInternalExports;
|
|
@@ -2,13 +2,12 @@ import { AnimationOptions, type IAnimatable, type IOptionLoader, OptionsColor, t
|
|
|
2
2
|
import type { IOrbit } from "../Interfaces/IOrbit.js";
|
|
3
3
|
import { OrbitRotation } from "./OrbitRotation.js";
|
|
4
4
|
export declare class Orbit implements IOrbit, IOptionLoader<IOrbit>, IAnimatable<AnimationOptions> {
|
|
5
|
-
animation: AnimationOptions;
|
|
5
|
+
readonly animation: AnimationOptions;
|
|
6
6
|
color?: OptionsColor;
|
|
7
7
|
enable: boolean;
|
|
8
8
|
opacity: RangeValue;
|
|
9
9
|
radius?: RangeValue;
|
|
10
|
-
rotation: OrbitRotation;
|
|
10
|
+
readonly rotation: OrbitRotation;
|
|
11
11
|
width: RangeValue;
|
|
12
|
-
constructor();
|
|
13
12
|
load(data?: RecursivePartial<IOrbit>): void;
|
|
14
13
|
}
|