@tsparticles/updater-tilt 3.6.0-beta.1 → 3.7.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.
@@ -1,4 +1,4 @@
1
- import { ValueWithRandom } from "@tsparticles/engine";
1
+ import { ValueWithRandom, isNull } from "@tsparticles/engine";
2
2
  import { TiltDirection } from "../../TiltDirection.js";
3
3
  import { TiltAnimation } from "./TiltAnimation.js";
4
4
  export class Tilt extends ValueWithRandom {
@@ -11,7 +11,7 @@ export class Tilt extends ValueWithRandom {
11
11
  }
12
12
  load(data) {
13
13
  super.load(data);
14
- if (!data) {
14
+ if (isNull(data)) {
15
15
  return;
16
16
  }
17
17
  this.animation.load(data.animation);
@@ -1,4 +1,4 @@
1
- import { setRangeValue } from "@tsparticles/engine";
1
+ import { isNull, setRangeValue } from "@tsparticles/engine";
2
2
  export class TiltAnimation {
3
3
  constructor() {
4
4
  this.enable = false;
@@ -7,7 +7,7 @@ export class TiltAnimation {
7
7
  this.sync = false;
8
8
  }
9
9
  load(data) {
10
- if (!data) {
10
+ if (isNull(data)) {
11
11
  return;
12
12
  }
13
13
  if (data.enable !== undefined) {
package/browser/index.js CHANGED
@@ -1,5 +1,7 @@
1
+ import { assertValidVersion } from "@tsparticles/engine";
1
2
  import { TiltUpdater } from "./TiltUpdater.js";
2
3
  export async function loadTiltUpdater(engine, refresh = true) {
4
+ assertValidVersion(engine, "3.7.0");
3
5
  await engine.addParticleUpdater("tilt", container => {
4
6
  return Promise.resolve(new TiltUpdater(container));
5
7
  }, refresh);
@@ -14,7 +14,7 @@ class Tilt extends engine_1.ValueWithRandom {
14
14
  }
15
15
  load(data) {
16
16
  super.load(data);
17
- if (!data) {
17
+ if ((0, engine_1.isNull)(data)) {
18
18
  return;
19
19
  }
20
20
  this.animation.load(data.animation);
@@ -10,7 +10,7 @@ class TiltAnimation {
10
10
  this.sync = false;
11
11
  }
12
12
  load(data) {
13
- if (!data) {
13
+ if ((0, engine_1.isNull)(data)) {
14
14
  return;
15
15
  }
16
16
  if (data.enable !== undefined) {
package/cjs/index.js CHANGED
@@ -1,8 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.loadTiltUpdater = loadTiltUpdater;
4
+ const engine_1 = require("@tsparticles/engine");
4
5
  const TiltUpdater_js_1 = require("./TiltUpdater.js");
5
6
  async function loadTiltUpdater(engine, refresh = true) {
7
+ (0, engine_1.assertValidVersion)(engine, "3.7.0");
6
8
  await engine.addParticleUpdater("tilt", container => {
7
9
  return Promise.resolve(new TiltUpdater_js_1.TiltUpdater(container));
8
10
  }, refresh);
@@ -1,4 +1,4 @@
1
- import { ValueWithRandom } from "@tsparticles/engine";
1
+ import { ValueWithRandom, isNull } from "@tsparticles/engine";
2
2
  import { TiltDirection } from "../../TiltDirection.js";
3
3
  import { TiltAnimation } from "./TiltAnimation.js";
4
4
  export class Tilt extends ValueWithRandom {
@@ -11,7 +11,7 @@ export class Tilt extends ValueWithRandom {
11
11
  }
12
12
  load(data) {
13
13
  super.load(data);
14
- if (!data) {
14
+ if (isNull(data)) {
15
15
  return;
16
16
  }
17
17
  this.animation.load(data.animation);
@@ -1,4 +1,4 @@
1
- import { setRangeValue } from "@tsparticles/engine";
1
+ import { isNull, setRangeValue } from "@tsparticles/engine";
2
2
  export class TiltAnimation {
3
3
  constructor() {
4
4
  this.enable = false;
@@ -7,7 +7,7 @@ export class TiltAnimation {
7
7
  this.sync = false;
8
8
  }
9
9
  load(data) {
10
- if (!data) {
10
+ if (isNull(data)) {
11
11
  return;
12
12
  }
13
13
  if (data.enable !== undefined) {
package/esm/index.js CHANGED
@@ -1,5 +1,7 @@
1
+ import { assertValidVersion } from "@tsparticles/engine";
1
2
  import { TiltUpdater } from "./TiltUpdater.js";
2
3
  export async function loadTiltUpdater(engine, refresh = true) {
4
+ assertValidVersion(engine, "3.7.0");
3
5
  await engine.addParticleUpdater("tilt", container => {
4
6
  return Promise.resolve(new TiltUpdater(container));
5
7
  }, refresh);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/updater-tilt",
3
- "version": "3.6.0-beta.1",
3
+ "version": "3.7.0",
4
4
  "description": "tsParticles particles tilt 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.6.0-beta.1"
90
+ "@tsparticles/engine": "3.7.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-tilt [13 Oct 2024 at 17:32]</title>
6
+ <title>@tsparticles/updater-tilt [24 Nov 2024 at 19:28]</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
- * v3.6.0-beta.1
7
+ * v3.7.0
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_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 */ Tilt: () => (/* binding */ Tilt)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _TiltDirection_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../TiltDirection.js */ \"./dist/browser/TiltDirection.js\");\n/* harmony import */ var _TiltAnimation_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./TiltAnimation.js */ \"./dist/browser/Options/Classes/TiltAnimation.js\");\n\n\n\nclass Tilt extends _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ValueWithRandom {\n constructor() {\n super();\n this.animation = new _TiltAnimation_js__WEBPACK_IMPORTED_MODULE_1__.TiltAnimation();\n this.direction = _TiltDirection_js__WEBPACK_IMPORTED_MODULE_2__.TiltDirection.clockwise;\n this.enable = false;\n this.value = 0;\n }\n load(data) {\n super.load(data);\n if (!data) {\n return;\n }\n this.animation.load(data.animation);\n if (data.direction !== undefined) {\n this.direction = data.direction;\n }\n if (data.enable !== undefined) {\n this.enable = data.enable;\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-tilt/./dist/browser/Options/Classes/Tilt.js?");
37
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Tilt: () => (/* binding */ Tilt)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _TiltDirection_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../TiltDirection.js */ \"./dist/browser/TiltDirection.js\");\n/* harmony import */ var _TiltAnimation_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./TiltAnimation.js */ \"./dist/browser/Options/Classes/TiltAnimation.js\");\n\n\n\nclass Tilt extends _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.ValueWithRandom {\n constructor() {\n super();\n this.animation = new _TiltAnimation_js__WEBPACK_IMPORTED_MODULE_1__.TiltAnimation();\n this.direction = _TiltDirection_js__WEBPACK_IMPORTED_MODULE_2__.TiltDirection.clockwise;\n this.enable = false;\n this.value = 0;\n }\n load(data) {\n super.load(data);\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n this.animation.load(data.animation);\n if (data.direction !== undefined) {\n this.direction = data.direction;\n }\n if (data.enable !== undefined) {\n this.enable = data.enable;\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-tilt/./dist/browser/Options/Classes/Tilt.js?");
38
38
 
39
39
  /***/ }),
40
40
 
@@ -44,7 +44,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
44
44
  \*******************************************************/
45
45
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
46
46
 
47
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ TiltAnimation: () => (/* binding */ TiltAnimation)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nclass TiltAnimation {\n constructor() {\n this.enable = false;\n this.speed = 0;\n this.decay = 0;\n this.sync = false;\n }\n load(data) {\n if (!data) {\n return;\n }\n if (data.enable !== undefined) {\n this.enable = data.enable;\n }\n if (data.speed !== undefined) {\n this.speed = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.speed);\n }\n if (data.decay !== undefined) {\n this.decay = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.decay);\n }\n if (data.sync !== undefined) {\n this.sync = data.sync;\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-tilt/./dist/browser/Options/Classes/TiltAnimation.js?");
47
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ TiltAnimation: () => (/* binding */ TiltAnimation)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nclass TiltAnimation {\n constructor() {\n this.enable = false;\n this.speed = 0;\n this.decay = 0;\n this.sync = false;\n }\n load(data) {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n if (data.enable !== undefined) {\n this.enable = data.enable;\n }\n if (data.speed !== undefined) {\n this.speed = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.speed);\n }\n if (data.decay !== undefined) {\n this.decay = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.decay);\n }\n if (data.sync !== undefined) {\n this.sync = data.sync;\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-tilt/./dist/browser/Options/Classes/TiltAnimation.js?");
48
48
 
49
49
  /***/ }),
50
50
 
@@ -74,7 +74,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
74
74
  \*******************************/
75
75
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
76
76
 
77
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadTiltUpdater: () => (/* binding */ loadTiltUpdater)\n/* harmony export */ });\n/* harmony import */ var _TiltUpdater_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./TiltUpdater.js */ \"./dist/browser/TiltUpdater.js\");\n\nasync function loadTiltUpdater(engine, refresh = true) {\n await engine.addParticleUpdater(\"tilt\", container => {\n return Promise.resolve(new _TiltUpdater_js__WEBPACK_IMPORTED_MODULE_0__.TiltUpdater(container));\n }, refresh);\n}\n\n//# sourceURL=webpack://@tsparticles/updater-tilt/./dist/browser/index.js?");
77
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ loadTiltUpdater: () => (/* binding */ loadTiltUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _TiltUpdater_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./TiltUpdater.js */ \"./dist/browser/TiltUpdater.js\");\n\n\nasync function loadTiltUpdater(engine, refresh = true) {\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.assertValidVersion)(engine, \"3.7.0\");\n await engine.addParticleUpdater(\"tilt\", container => {\n return Promise.resolve(new _TiltUpdater_js__WEBPACK_IMPORTED_MODULE_1__.TiltUpdater(container));\n }, refresh);\n}\n\n//# sourceURL=webpack://@tsparticles/updater-tilt/./dist/browser/index.js?");
78
78
 
79
79
  /***/ }),
80
80
 
@@ -1,2 +1,2 @@
1
1
  /*! For license information please see tsparticles.updater.tilt.min.js.LICENSE.txt */
2
- !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var i="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var o in i)("object"==typeof exports?exports:e)[o]=i[o]}}(this,(e=>(()=>{var t={303:t=>{t.exports=e}},i={};function o(e){var n=i[e];if(void 0!==n)return n.exports;var a=i[e]={exports:{}};return t[e](a,a.exports,o),a.exports}o.d=(e,t)=>{for(var i in t)o.o(t,i)&&!o.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};o.r(n),o.d(n,{loadTiltUpdater:()=>u});var a,s=o(303);!function(e){e.clockwise="clockwise",e.counterClockwise="counter-clockwise",e.random="random"}(a||(a={}));class r{constructor(){this.enable=!1,this.speed=0,this.decay=0,this.sync=!1}load(e){e&&(void 0!==e.enable&&(this.enable=e.enable),void 0!==e.speed&&(this.speed=(0,s.setRangeValue)(e.speed)),void 0!==e.decay&&(this.decay=(0,s.setRangeValue)(e.decay)),void 0!==e.sync&&(this.sync=e.sync))}}class c extends s.ValueWithRandom{constructor(){super(),this.animation=new r,this.direction=a.clockwise,this.enable=!1,this.value=0}load(e){super.load(e),e&&(this.animation.load(e.animation),void 0!==e.direction&&(this.direction=e.direction),void 0!==e.enable&&(this.enable=e.enable))}}const l=2*Math.PI;class d{constructor(e){this.container=e}getTransformValues(e){const t=e.tilt?.enable&&e.tilt;return{b:t?Math.cos(t.value)*t.cosDirection:void 0,c:t?Math.sin(t.value)*t.sinDirection:void 0}}init(e){const t=e.options.tilt;if(!t)return;e.tilt={enable:t.enable,value:(0,s.degToRad)((0,s.getRangeValue)(t.value)),sinDirection:(0,s.getRandom)()>=s.halfRandom?1:-1,cosDirection:(0,s.getRandom)()>=s.halfRandom?1:-1,min:0,max:l};let i=t.direction;if(i===a.random){i=Math.floor(2*(0,s.getRandom)())>0?a.counterClockwise:a.clockwise}switch(i){case a.counterClockwise:case"counterClockwise":e.tilt.status=s.AnimationStatus.decreasing;break;case a.clockwise:e.tilt.status=s.AnimationStatus.increasing}const o=e.options.tilt?.animation;o?.enable&&(e.tilt.decay=1-(0,s.getRangeValue)(o.decay),e.tilt.velocity=(0,s.getRangeValue)(o.speed)/360*this.container.retina.reduceFactor,o.sync||(e.tilt.velocity*=(0,s.getRandom)()))}isEnabled(e){const t=e.options.tilt?.animation;return!e.destroyed&&!e.spawning&&!!t?.enable}loadOptions(e,...t){e.tilt||(e.tilt=new c);for(const i of t)e.tilt.load(i?.tilt)}async update(e,t){this.isEnabled(e)&&e.tilt&&((0,s.updateAnimation)(e,e.tilt,!1,s.DestroyType.none,t),await Promise.resolve())}}async function u(e,t=!0){await e.addParticleUpdater("tilt",(e=>Promise.resolve(new d(e))),t)}return n})()));
2
+ !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var i="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var o in i)("object"==typeof exports?exports:e)[o]=i[o]}}(this,(e=>(()=>{var t={303:t=>{t.exports=e}},i={};function o(e){var n=i[e];if(void 0!==n)return n.exports;var a=i[e]={exports:{}};return t[e](a,a.exports,o),a.exports}o.d=(e,t)=>{for(var i in t)o.o(t,i)&&!o.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};o.r(n),o.d(n,{loadTiltUpdater:()=>u});var a,s=o(303);!function(e){e.clockwise="clockwise",e.counterClockwise="counter-clockwise",e.random="random"}(a||(a={}));class r{constructor(){this.enable=!1,this.speed=0,this.decay=0,this.sync=!1}load(e){(0,s.isNull)(e)||(void 0!==e.enable&&(this.enable=e.enable),void 0!==e.speed&&(this.speed=(0,s.setRangeValue)(e.speed)),void 0!==e.decay&&(this.decay=(0,s.setRangeValue)(e.decay)),void 0!==e.sync&&(this.sync=e.sync))}}class l extends s.ValueWithRandom{constructor(){super(),this.animation=new r,this.direction=a.clockwise,this.enable=!1,this.value=0}load(e){super.load(e),(0,s.isNull)(e)||(this.animation.load(e.animation),void 0!==e.direction&&(this.direction=e.direction),void 0!==e.enable&&(this.enable=e.enable))}}const c=2*Math.PI;class d{constructor(e){this.container=e}getTransformValues(e){const t=e.tilt?.enable&&e.tilt;return{b:t?Math.cos(t.value)*t.cosDirection:void 0,c:t?Math.sin(t.value)*t.sinDirection:void 0}}init(e){const t=e.options.tilt;if(!t)return;e.tilt={enable:t.enable,value:(0,s.degToRad)((0,s.getRangeValue)(t.value)),sinDirection:(0,s.getRandom)()>=s.halfRandom?1:-1,cosDirection:(0,s.getRandom)()>=s.halfRandom?1:-1,min:0,max:c};let i=t.direction;if(i===a.random){i=Math.floor(2*(0,s.getRandom)())>0?a.counterClockwise:a.clockwise}switch(i){case a.counterClockwise:case"counterClockwise":e.tilt.status=s.AnimationStatus.decreasing;break;case a.clockwise:e.tilt.status=s.AnimationStatus.increasing}const o=e.options.tilt?.animation;o?.enable&&(e.tilt.decay=1-(0,s.getRangeValue)(o.decay),e.tilt.velocity=(0,s.getRangeValue)(o.speed)/360*this.container.retina.reduceFactor,o.sync||(e.tilt.velocity*=(0,s.getRandom)()))}isEnabled(e){const t=e.options.tilt?.animation;return!e.destroyed&&!e.spawning&&!!t?.enable}loadOptions(e,...t){e.tilt||(e.tilt=new l);for(const i of t)e.tilt.load(i?.tilt)}async update(e,t){this.isEnabled(e)&&e.tilt&&((0,s.updateAnimation)(e,e.tilt,!1,s.DestroyType.none,t),await Promise.resolve())}}async function u(e,t=!0){(0,s.assertValidVersion)(e,"3.7.0"),await e.addParticleUpdater("tilt",(e=>Promise.resolve(new d(e))),t)}return n})()));
@@ -1 +1 @@
1
- /*! tsParticles Tilt Updater v3.6.0-beta.1 by Matteo Bruni */
1
+ /*! tsParticles Tilt Updater v3.7.0 by Matteo Bruni */
package/types/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import type { Engine } from "@tsparticles/engine";
1
+ import { type Engine } from "@tsparticles/engine";
2
2
  export declare function loadTiltUpdater(engine: Engine, refresh?: boolean): Promise<void>;
@@ -23,7 +23,7 @@
23
23
  }
24
24
  load(data) {
25
25
  super.load(data);
26
- if (!data) {
26
+ if ((0, engine_1.isNull)(data)) {
27
27
  return;
28
28
  }
29
29
  this.animation.load(data.animation);
@@ -19,7 +19,7 @@
19
19
  this.sync = false;
20
20
  }
21
21
  load(data) {
22
- if (!data) {
22
+ if ((0, engine_1.isNull)(data)) {
23
23
  return;
24
24
  }
25
25
  if (data.enable !== undefined) {
package/umd/index.js CHANGED
@@ -4,14 +4,16 @@
4
4
  if (v !== undefined) module.exports = v;
5
5
  }
6
6
  else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports", "./TiltUpdater.js"], factory);
7
+ define(["require", "exports", "@tsparticles/engine", "./TiltUpdater.js"], factory);
8
8
  }
9
9
  })(function (require, exports) {
10
10
  "use strict";
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.loadTiltUpdater = loadTiltUpdater;
13
+ const engine_1 = require("@tsparticles/engine");
13
14
  const TiltUpdater_js_1 = require("./TiltUpdater.js");
14
15
  async function loadTiltUpdater(engine, refresh = true) {
16
+ (0, engine_1.assertValidVersion)(engine, "3.7.0");
15
17
  await engine.addParticleUpdater("tilt", container => {
16
18
  return Promise.resolve(new TiltUpdater_js_1.TiltUpdater(container));
17
19
  }, refresh);