@tsparticles/updater-out-modes 3.0.0-beta.5 → 3.0.0
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/OutOutMode.js
CHANGED
|
@@ -57,7 +57,7 @@ export class OutOutMode {
|
|
|
57
57
|
break;
|
|
58
58
|
}
|
|
59
59
|
case "normal": {
|
|
60
|
-
const
|
|
60
|
+
const warp = particle.options.move.warp, canvasSize = container.canvas.size, newPos = {
|
|
61
61
|
bottom: canvasSize.height + particle.getRadius() + particle.offset.y,
|
|
62
62
|
left: -particle.getRadius() - particle.offset.x,
|
|
63
63
|
right: canvasSize.width + particle.getRadius() + particle.offset.x,
|
|
@@ -67,7 +67,7 @@ export class OutOutMode {
|
|
|
67
67
|
nextBounds.left > canvasSize.width + particle.offset.x) {
|
|
68
68
|
particle.position.x = newPos.left;
|
|
69
69
|
particle.initialPosition.x = particle.position.x;
|
|
70
|
-
if (!
|
|
70
|
+
if (!warp) {
|
|
71
71
|
particle.position.y = getRandom() * canvasSize.height;
|
|
72
72
|
particle.initialPosition.y = particle.position.y;
|
|
73
73
|
}
|
|
@@ -75,14 +75,14 @@ export class OutOutMode {
|
|
|
75
75
|
else if (direction === "left" && nextBounds.right < -particle.offset.x) {
|
|
76
76
|
particle.position.x = newPos.right;
|
|
77
77
|
particle.initialPosition.x = particle.position.x;
|
|
78
|
-
if (!
|
|
78
|
+
if (!warp) {
|
|
79
79
|
particle.position.y = getRandom() * canvasSize.height;
|
|
80
80
|
particle.initialPosition.y = particle.position.y;
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
if (direction === "bottom" &&
|
|
84
84
|
nextBounds.top > canvasSize.height + particle.offset.y) {
|
|
85
|
-
if (!
|
|
85
|
+
if (!warp) {
|
|
86
86
|
particle.position.x = getRandom() * canvasSize.width;
|
|
87
87
|
particle.initialPosition.x = particle.position.x;
|
|
88
88
|
}
|
|
@@ -90,7 +90,7 @@ export class OutOutMode {
|
|
|
90
90
|
particle.initialPosition.y = particle.position.y;
|
|
91
91
|
}
|
|
92
92
|
else if (direction === "top" && nextBounds.bottom < -particle.offset.y) {
|
|
93
|
-
if (!
|
|
93
|
+
if (!warp) {
|
|
94
94
|
particle.position.x = getRandom() * canvasSize.width;
|
|
95
95
|
particle.initialPosition.x = particle.position.x;
|
|
96
96
|
}
|
package/cjs/OutOutMode.js
CHANGED
|
@@ -60,7 +60,7 @@ class OutOutMode {
|
|
|
60
60
|
break;
|
|
61
61
|
}
|
|
62
62
|
case "normal": {
|
|
63
|
-
const
|
|
63
|
+
const warp = particle.options.move.warp, canvasSize = container.canvas.size, newPos = {
|
|
64
64
|
bottom: canvasSize.height + particle.getRadius() + particle.offset.y,
|
|
65
65
|
left: -particle.getRadius() - particle.offset.x,
|
|
66
66
|
right: canvasSize.width + particle.getRadius() + particle.offset.x,
|
|
@@ -70,7 +70,7 @@ class OutOutMode {
|
|
|
70
70
|
nextBounds.left > canvasSize.width + particle.offset.x) {
|
|
71
71
|
particle.position.x = newPos.left;
|
|
72
72
|
particle.initialPosition.x = particle.position.x;
|
|
73
|
-
if (!
|
|
73
|
+
if (!warp) {
|
|
74
74
|
particle.position.y = (0, engine_1.getRandom)() * canvasSize.height;
|
|
75
75
|
particle.initialPosition.y = particle.position.y;
|
|
76
76
|
}
|
|
@@ -78,14 +78,14 @@ class OutOutMode {
|
|
|
78
78
|
else if (direction === "left" && nextBounds.right < -particle.offset.x) {
|
|
79
79
|
particle.position.x = newPos.right;
|
|
80
80
|
particle.initialPosition.x = particle.position.x;
|
|
81
|
-
if (!
|
|
81
|
+
if (!warp) {
|
|
82
82
|
particle.position.y = (0, engine_1.getRandom)() * canvasSize.height;
|
|
83
83
|
particle.initialPosition.y = particle.position.y;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
if (direction === "bottom" &&
|
|
87
87
|
nextBounds.top > canvasSize.height + particle.offset.y) {
|
|
88
|
-
if (!
|
|
88
|
+
if (!warp) {
|
|
89
89
|
particle.position.x = (0, engine_1.getRandom)() * canvasSize.width;
|
|
90
90
|
particle.initialPosition.x = particle.position.x;
|
|
91
91
|
}
|
|
@@ -93,7 +93,7 @@ class OutOutMode {
|
|
|
93
93
|
particle.initialPosition.y = particle.position.y;
|
|
94
94
|
}
|
|
95
95
|
else if (direction === "top" && nextBounds.bottom < -particle.offset.y) {
|
|
96
|
-
if (!
|
|
96
|
+
if (!warp) {
|
|
97
97
|
particle.position.x = (0, engine_1.getRandom)() * canvasSize.width;
|
|
98
98
|
particle.initialPosition.x = particle.position.x;
|
|
99
99
|
}
|
package/esm/OutOutMode.js
CHANGED
|
@@ -57,7 +57,7 @@ export class OutOutMode {
|
|
|
57
57
|
break;
|
|
58
58
|
}
|
|
59
59
|
case "normal": {
|
|
60
|
-
const
|
|
60
|
+
const warp = particle.options.move.warp, canvasSize = container.canvas.size, newPos = {
|
|
61
61
|
bottom: canvasSize.height + particle.getRadius() + particle.offset.y,
|
|
62
62
|
left: -particle.getRadius() - particle.offset.x,
|
|
63
63
|
right: canvasSize.width + particle.getRadius() + particle.offset.x,
|
|
@@ -67,7 +67,7 @@ export class OutOutMode {
|
|
|
67
67
|
nextBounds.left > canvasSize.width + particle.offset.x) {
|
|
68
68
|
particle.position.x = newPos.left;
|
|
69
69
|
particle.initialPosition.x = particle.position.x;
|
|
70
|
-
if (!
|
|
70
|
+
if (!warp) {
|
|
71
71
|
particle.position.y = getRandom() * canvasSize.height;
|
|
72
72
|
particle.initialPosition.y = particle.position.y;
|
|
73
73
|
}
|
|
@@ -75,14 +75,14 @@ export class OutOutMode {
|
|
|
75
75
|
else if (direction === "left" && nextBounds.right < -particle.offset.x) {
|
|
76
76
|
particle.position.x = newPos.right;
|
|
77
77
|
particle.initialPosition.x = particle.position.x;
|
|
78
|
-
if (!
|
|
78
|
+
if (!warp) {
|
|
79
79
|
particle.position.y = getRandom() * canvasSize.height;
|
|
80
80
|
particle.initialPosition.y = particle.position.y;
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
if (direction === "bottom" &&
|
|
84
84
|
nextBounds.top > canvasSize.height + particle.offset.y) {
|
|
85
|
-
if (!
|
|
85
|
+
if (!warp) {
|
|
86
86
|
particle.position.x = getRandom() * canvasSize.width;
|
|
87
87
|
particle.initialPosition.x = particle.position.x;
|
|
88
88
|
}
|
|
@@ -90,7 +90,7 @@ export class OutOutMode {
|
|
|
90
90
|
particle.initialPosition.y = particle.position.y;
|
|
91
91
|
}
|
|
92
92
|
else if (direction === "top" && nextBounds.bottom < -particle.offset.y) {
|
|
93
|
-
if (!
|
|
93
|
+
if (!warp) {
|
|
94
94
|
particle.position.x = getRandom() * canvasSize.width;
|
|
95
95
|
particle.initialPosition.x = particle.position.x;
|
|
96
96
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/updater-out-modes",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "tsParticles particles out modes updater",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"./package.json": "./package.json"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@tsparticles/engine": "^3.0.0
|
|
90
|
+
"@tsparticles/engine": "^3.0.0"
|
|
91
91
|
},
|
|
92
92
|
"publishConfig": {
|
|
93
93
|
"access": "public"
|
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/updater-out-modes [
|
|
6
|
+
<title>@tsparticles/updater-out-modes [4 Dec 2023 at 21:57]</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>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<body>
|
|
32
32
|
<div id="app"></div>
|
|
33
33
|
<script>
|
|
34
|
-
window.chartData = [{"label":"tsparticles.updater.out-modes.js","isAsset":true,"statSize":13062,"parsedSize":
|
|
34
|
+
window.chartData = [{"label":"tsparticles.updater.out-modes.js","isAsset":true,"statSize":13062,"parsedSize":17066,"gzipSize":3419,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":13020,"groups":[{"id":1,"label":"index.js + 6 modules (concatenated)","path":"./dist/browser/index.js + 6 modules (concatenated)","statSize":13020,"parsedSize":17066,"gzipSize":3419,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/index.js + 6 modules (concatenated)/dist/browser","statSize":13020,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/index.js + 6 modules (concatenated)/dist/browser/index.js","statSize":235,"parsedSize":308,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"OutOfCanvasUpdater.js","path":"./dist/browser/index.js + 6 modules (concatenated)/dist/browser/OutOfCanvasUpdater.js","statSize":1149,"parsedSize":1506,"gzipSize":301,"inaccurateSizes":true},{"id":null,"label":"BounceOutMode.js","path":"./dist/browser/index.js + 6 modules (concatenated)/dist/browser/BounceOutMode.js","statSize":1230,"parsedSize":1612,"gzipSize":322,"inaccurateSizes":true},{"id":null,"label":"DestroyOutMode.js","path":"./dist/browser/index.js + 6 modules (concatenated)/dist/browser/DestroyOutMode.js","statSize":1146,"parsedSize":1502,"gzipSize":300,"inaccurateSizes":true},{"id":null,"label":"OutOutMode.js","path":"./dist/browser/index.js + 6 modules (concatenated)/dist/browser/OutOutMode.js","statSize":5027,"parsedSize":6589,"gzipSize":1320,"inaccurateSizes":true},{"id":null,"label":"NoneOutMode.js","path":"./dist/browser/index.js + 6 modules (concatenated)/dist/browser/NoneOutMode.js","statSize":1498,"parsedSize":1963,"gzipSize":393,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/index.js + 6 modules (concatenated)/dist/browser/Utils.js","statSize":2735,"parsedSize":3584,"gzipSize":718,"inaccurateSizes":true}],"parsedSize":17066,"gzipSize":3419,"inaccurateSizes":true}]}],"parsedSize":17066,"gzipSize":3419},{"label":"engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles","path":"./engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles","statSize":42,"groups":[{"id":533,"label":"engine\",\"root\":\"window\"}","path":"./engine\",\"commonjs2\":\"@tsparticles/engine\",\"amd\":\"@tsparticles/engine\",\"root\":\"window\"}","statSize":42}],"parsedSize":0,"gzipSize":0}],"isInitialByEntrypoint":{"tsparticles.updater.out-modes":true}}];
|
|
35
35
|
window.entrypoints = ["tsparticles.updater.out-modes","tsparticles.updater.out-modes.min"];
|
|
36
36
|
window.defaultSizes = "parsed";
|
|
37
37
|
</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
|
-
* v3.0.0
|
|
7
|
+
* v3.0.0
|
|
8
8
|
*/
|
|
9
9
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
10
10
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
@@ -351,7 +351,7 @@ class OutOutMode {
|
|
|
351
351
|
}
|
|
352
352
|
case "normal":
|
|
353
353
|
{
|
|
354
|
-
const
|
|
354
|
+
const warp = particle.options.move.warp,
|
|
355
355
|
canvasSize = container.canvas.size,
|
|
356
356
|
newPos = {
|
|
357
357
|
bottom: canvasSize.height + particle.getRadius() + particle.offset.y,
|
|
@@ -364,27 +364,27 @@ class OutOutMode {
|
|
|
364
364
|
if (direction === "right" && nextBounds.left > canvasSize.width + particle.offset.x) {
|
|
365
365
|
particle.position.x = newPos.left;
|
|
366
366
|
particle.initialPosition.x = particle.position.x;
|
|
367
|
-
if (!
|
|
367
|
+
if (!warp) {
|
|
368
368
|
particle.position.y = (0,engine_root_window_.getRandom)() * canvasSize.height;
|
|
369
369
|
particle.initialPosition.y = particle.position.y;
|
|
370
370
|
}
|
|
371
371
|
} else if (direction === "left" && nextBounds.right < -particle.offset.x) {
|
|
372
372
|
particle.position.x = newPos.right;
|
|
373
373
|
particle.initialPosition.x = particle.position.x;
|
|
374
|
-
if (!
|
|
374
|
+
if (!warp) {
|
|
375
375
|
particle.position.y = (0,engine_root_window_.getRandom)() * canvasSize.height;
|
|
376
376
|
particle.initialPosition.y = particle.position.y;
|
|
377
377
|
}
|
|
378
378
|
}
|
|
379
379
|
if (direction === "bottom" && nextBounds.top > canvasSize.height + particle.offset.y) {
|
|
380
|
-
if (!
|
|
380
|
+
if (!warp) {
|
|
381
381
|
particle.position.x = (0,engine_root_window_.getRandom)() * canvasSize.width;
|
|
382
382
|
particle.initialPosition.x = particle.position.x;
|
|
383
383
|
}
|
|
384
384
|
particle.position.y = newPos.top;
|
|
385
385
|
particle.initialPosition.y = particle.position.y;
|
|
386
386
|
} else if (direction === "top" && nextBounds.bottom < -particle.offset.y) {
|
|
387
|
-
if (!
|
|
387
|
+
if (!warp) {
|
|
388
388
|
particle.position.x = (0,engine_root_window_.getRandom)() * canvasSize.width;
|
|
389
389
|
particle.initialPosition.x = particle.position.x;
|
|
390
390
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tsParticles Out Modes Updater v3.0.0
|
|
1
|
+
/*! tsParticles Out Modes Updater v3.0.0 by Matteo Bruni */
|
package/umd/OutOutMode.js
CHANGED
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
break;
|
|
70
70
|
}
|
|
71
71
|
case "normal": {
|
|
72
|
-
const
|
|
72
|
+
const warp = particle.options.move.warp, canvasSize = container.canvas.size, newPos = {
|
|
73
73
|
bottom: canvasSize.height + particle.getRadius() + particle.offset.y,
|
|
74
74
|
left: -particle.getRadius() - particle.offset.x,
|
|
75
75
|
right: canvasSize.width + particle.getRadius() + particle.offset.x,
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
nextBounds.left > canvasSize.width + particle.offset.x) {
|
|
80
80
|
particle.position.x = newPos.left;
|
|
81
81
|
particle.initialPosition.x = particle.position.x;
|
|
82
|
-
if (!
|
|
82
|
+
if (!warp) {
|
|
83
83
|
particle.position.y = (0, engine_1.getRandom)() * canvasSize.height;
|
|
84
84
|
particle.initialPosition.y = particle.position.y;
|
|
85
85
|
}
|
|
@@ -87,14 +87,14 @@
|
|
|
87
87
|
else if (direction === "left" && nextBounds.right < -particle.offset.x) {
|
|
88
88
|
particle.position.x = newPos.right;
|
|
89
89
|
particle.initialPosition.x = particle.position.x;
|
|
90
|
-
if (!
|
|
90
|
+
if (!warp) {
|
|
91
91
|
particle.position.y = (0, engine_1.getRandom)() * canvasSize.height;
|
|
92
92
|
particle.initialPosition.y = particle.position.y;
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
if (direction === "bottom" &&
|
|
96
96
|
nextBounds.top > canvasSize.height + particle.offset.y) {
|
|
97
|
-
if (!
|
|
97
|
+
if (!warp) {
|
|
98
98
|
particle.position.x = (0, engine_1.getRandom)() * canvasSize.width;
|
|
99
99
|
particle.initialPosition.x = particle.position.x;
|
|
100
100
|
}
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
particle.initialPosition.y = particle.position.y;
|
|
103
103
|
}
|
|
104
104
|
else if (direction === "top" && nextBounds.bottom < -particle.offset.y) {
|
|
105
|
-
if (!
|
|
105
|
+
if (!warp) {
|
|
106
106
|
particle.position.x = (0, engine_1.getRandom)() * canvasSize.width;
|
|
107
107
|
particle.initialPosition.x = particle.position.x;
|
|
108
108
|
}
|