@tsparticles/noise-field 4.0.0-alpha.4 → 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/browser/NoiseFieldGenerator.js +1 -2
- package/cjs/NoiseFieldGenerator.js +1 -2
- package/esm/NoiseFieldGenerator.js +1 -2
- package/package.json +2 -2
- package/report.html +3 -3
- package/tsparticles.noise.field.js +1 -1
- package/tsparticles.noise.field.min.js.LICENSE.txt +1 -1
- package/umd/NoiseFieldGenerator.js +1 -2
|
@@ -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").
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Noise Field v4.0.0-alpha.
|
|
1
|
+
/*! tsParticles Noise Field v4.0.0-alpha.8 by Matteo Bruni */
|
|
@@ -145,8 +145,7 @@
|
|
|
145
145
|
const sourceOptions = container.actualOptions.particles.move.path.options, { options } = this;
|
|
146
146
|
options.width = container.canvas.size.width;
|
|
147
147
|
options.height = container.canvas.size.height;
|
|
148
|
-
options.size =
|
|
149
|
-
sourceOptions["size"] > empty ? sourceOptions["size"] : defaultOptions.size;
|
|
148
|
+
options.size = sourceOptions["size"] > empty ? sourceOptions["size"] : defaultOptions.size;
|
|
150
149
|
options.increment =
|
|
151
150
|
sourceOptions["increment"] > empty
|
|
152
151
|
? sourceOptions["increment"]
|