@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.
@@ -1,38 +1,23 @@
1
- import { AnimationOptions, OptionsColor, isNull, setRangeValue, } from "@tsparticles/engine";
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
- if (data.enable !== undefined) {
25
- this.enable = data.enable;
26
- }
27
- if (data.opacity !== undefined) {
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
  }
@@ -1,9 +1,6 @@
1
1
  import { ValueWithRandom, isNull } from "@tsparticles/engine";
2
2
  export class OrbitRotation extends ValueWithRandom {
3
- constructor() {
4
- super();
5
- this.value = 45;
6
- }
3
+ value = 45;
7
4
  load(data) {
8
5
  if (isNull(data)) {
9
6
  return;
@@ -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.orbit ??= new Orbit();
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");
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));
@@ -1,5 +1,5 @@
1
1
  export async function loadOrbitUpdater(engine) {
2
- engine.checkVersion("4.1.3");
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, setRangeValue, } from "@tsparticles/engine";
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
- if (data.enable !== undefined) {
25
- this.enable = data.enable;
26
- }
27
- if (data.opacity !== undefined) {
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
  }
@@ -1,9 +1,6 @@
1
1
  import { ValueWithRandom, isNull } from "@tsparticles/engine";
2
2
  export class OrbitRotation extends ValueWithRandom {
3
- constructor() {
4
- super();
5
- this.value = 45;
6
- }
3
+ value = 45;
7
4
  load(data) {
8
5
  if (isNull(data)) {
9
6
  return;
@@ -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.orbit ??= new Orbit();
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");
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.3");
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, setRangeValue, } from "@tsparticles/engine";
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
- if (data.enable !== undefined) {
25
- this.enable = data.enable;
26
- }
27
- if (data.opacity !== undefined) {
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
  }
@@ -1,9 +1,6 @@
1
1
  import { ValueWithRandom, isNull } from "@tsparticles/engine";
2
2
  export class OrbitRotation extends ValueWithRandom {
3
- constructor() {
4
- super();
5
- this.value = 45;
6
- }
3
+ value = 45;
7
4
  load(data) {
8
5
  if (isNull(data)) {
9
6
  return;
@@ -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.orbit ??= new Orbit();
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");
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.3");
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",
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.3"
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":"ba4ece6f-1","name":"OrbitRotation.js"},{"uid":"ba4ece6f-3","name":"Orbit.js"}]},{"uid":"ba4ece6f-5","name":"Enums.js"},{"uid":"ba4ece6f-7","name":"Utils.js"},{"uid":"ba4ece6f-9","name":"OrbitUpdater.js"},{"uid":"ba4ece6f-11","name":"index.js"},{"uid":"ba4ece6f-13","name":"browser.js"}]}]}],"isRoot":true},"nodeParts":{"ba4ece6f-1":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"metaUid":"ba4ece6f-0"},"ba4ece6f-3":{"renderedLength":1190,"gzipLength":0,"brotliLength":0,"metaUid":"ba4ece6f-2"},"ba4ece6f-5":{"renderedLength":159,"gzipLength":0,"brotliLength":0,"metaUid":"ba4ece6f-4"},"ba4ece6f-7":{"renderedLength":654,"gzipLength":0,"brotliLength":0,"metaUid":"ba4ece6f-6"},"ba4ece6f-9":{"renderedLength":3491,"gzipLength":0,"brotliLength":0,"metaUid":"ba4ece6f-8"},"ba4ece6f-11":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"ba4ece6f-10"},"ba4ece6f-13":{"renderedLength":175,"gzipLength":0,"brotliLength":0,"metaUid":"ba4ece6f-12"}},"nodeMetas":{"ba4ece6f-0":{"id":"/dist/browser/Options/Classes/OrbitRotation.js","moduleParts":{"tsparticles.updater.orbit.js":"ba4ece6f-1"},"imported":[{"uid":"ba4ece6f-14"}],"importedBy":[{"uid":"ba4ece6f-2"}]},"ba4ece6f-2":{"id":"/dist/browser/Options/Classes/Orbit.js","moduleParts":{"tsparticles.updater.orbit.js":"ba4ece6f-3"},"imported":[{"uid":"ba4ece6f-14"},{"uid":"ba4ece6f-0"}],"importedBy":[{"uid":"ba4ece6f-8"}]},"ba4ece6f-4":{"id":"/dist/browser/Enums.js","moduleParts":{"tsparticles.updater.orbit.js":"ba4ece6f-5"},"imported":[],"importedBy":[{"uid":"ba4ece6f-8"}]},"ba4ece6f-6":{"id":"/dist/browser/Utils.js","moduleParts":{"tsparticles.updater.orbit.js":"ba4ece6f-7"},"imported":[{"uid":"ba4ece6f-14"}],"importedBy":[{"uid":"ba4ece6f-8"}]},"ba4ece6f-8":{"id":"/dist/browser/OrbitUpdater.js","moduleParts":{"tsparticles.updater.orbit.js":"ba4ece6f-9"},"imported":[{"uid":"ba4ece6f-14"},{"uid":"ba4ece6f-2"},{"uid":"ba4ece6f-4"},{"uid":"ba4ece6f-6"}],"importedBy":[{"uid":"ba4ece6f-10"}]},"ba4ece6f-10":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.updater.orbit.js":"ba4ece6f-11"},"imported":[{"uid":"ba4ece6f-8"}],"importedBy":[{"uid":"ba4ece6f-12"}]},"ba4ece6f-12":{"id":"/dist/browser/browser.js","moduleParts":{"tsparticles.updater.orbit.js":"ba4ece6f-13"},"imported":[{"uid":"ba4ece6f-10"}],"importedBy":[],"isEntry":true},"ba4ece6f-14":{"id":"@tsparticles/engine","moduleParts":{},"imported":[],"importedBy":[{"uid":"ba4ece6f-8"},{"uid":"ba4ece6f-2"},{"uid":"ba4ece6f-6"},{"uid":"ba4ece6f-0"}],"isExternal":true}},"env":{"rollup":"4.60.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
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.3 */
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
- constructor() {
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
- if (data.enable !== undefined) {
44
- this.enable = data.enable;
45
- }
46
- if (data.opacity !== undefined) {
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.orbit ??= new Orbit();
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.3");
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{constructor(){super(),this.value=45}load(t){s.isNull(t)||super.load(t)}}class a{animation;color;enable;opacity;radius;rotation;width;constructor(){this.animation=new s.AnimationOptions,this.enable=!1,this.opacity=1,this.rotation=new e,this.width=1}load(t){s.isNull(t)||(this.animation.load(t.animation),this.rotation.load(t.rotation),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.opacity&&(this.opacity=s.setRangeValue(t.opacity)),void 0!==t.width&&(this.width=s.setRangeValue(t.width)),void 0!==t.radius&&(this.radius=s.setRangeValue(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 i=Math.PI*s.half,r=Math.PI+i;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=i,o=r;break;case n.front:l=r,o=i;break;default:l=0,o=s.doublePI}a.canvas.render.draw(e=>{!function(t,e,a,n,i,r,l,o,c,_){if(l<=0)return;const d=a.getPosition();n&&(e.strokeStyle=s.getStyleFromHsl(n,t.hdr,r)),e.lineWidth=l;const p=s.degToRad(o);e.beginPath(),e.ellipse(d.x,d.y,i*s.half,i*s.double,p,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,...s){t.orbit??=new a;for(const e of s)t.orbit.load(e?.orbit)}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.1.3"),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;
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
  }
@@ -1,5 +1,5 @@
1
1
  import { type IValueWithRandom, type RecursivePartial, ValueWithRandom } from "@tsparticles/engine";
2
2
  export declare class OrbitRotation extends ValueWithRandom {
3
- constructor();
3
+ value: number;
4
4
  load(data?: RecursivePartial<IValueWithRandom>): void;
5
5
  }