custom-pixi-particles 4.30.1 → 4.30.3
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/README.md +12 -12
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# custom-pixi-particles by [@lukasz-okuniewicz](http://github.com/lukasz-okuniewicz)
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**custom-pixi-particles** is a lightweight, high-performance library designed for creating and managing customizable particle effects in **PIXI.js** applications. It offers an intuitive API, flexible configuration options, and seamless compatibility with modern PIXI.js versions, making it an essential tool for developers looking to create stunning visual effects.
|
|
4
4
|
|
|
5
5
|
## 📑 Table of Contents
|
|
6
6
|
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
31
|
### Support My Work
|
|
32
|
-
If you find **
|
|
32
|
+
If you find **custom-pixi-particles** useful and would like to support my work, you can buy me a coffee. Your contributions help me dedicate more time to improving this library and creating new features for the community. Thank you for your support! ☕💖
|
|
33
33
|
|
|
34
34
|
[](https://buymeacoffee.com/lukasz.okuniewicz)
|
|
35
35
|
|
|
@@ -46,7 +46,7 @@ If you find **CustomPIXIParticles** useful and would like to support my work, yo
|
|
|
46
46
|
---
|
|
47
47
|
|
|
48
48
|
## 🎮 Demo
|
|
49
|
-
Try it out here: [
|
|
49
|
+
Try it out here: [custom-pixi-particles Live Editor](https://okuniewicz.eu/)
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
@@ -1122,17 +1122,17 @@ const textConfig = {
|
|
|
1122
1122
|
---
|
|
1123
1123
|
|
|
1124
1124
|
## 🖥️ Versions Compatibility
|
|
1125
|
-
| PixiJS |
|
|
1126
|
-
|
|
1127
|
-
| v5.x - v6.x | v4.x
|
|
1128
|
-
| v7.x | v7.x
|
|
1129
|
-
| v8.x | v8.x
|
|
1125
|
+
| PixiJS | custom-pixi-particles |
|
|
1126
|
+
|-------------|-----------------------|
|
|
1127
|
+
| v5.x - v6.x | v4.x |
|
|
1128
|
+
| v7.x | v7.x |
|
|
1129
|
+
| v8.x | v8.x |
|
|
1130
1130
|
|
|
1131
1131
|
---
|
|
1132
1132
|
|
|
1133
1133
|
## 🛠️ Advanced Editor
|
|
1134
|
-
Easily design and fine-tune your particle effects with the
|
|
1135
|
-
🔗 [
|
|
1134
|
+
Easily design and fine-tune your particle effects with the custom-pixi-particles Editor.
|
|
1135
|
+
🔗 [custom-pixi-particles Live Editor](https://okuniewicz.eu/)
|
|
1136
1136
|
|
|
1137
1137
|
---
|
|
1138
1138
|
|
|
@@ -1141,4 +1141,4 @@ Contributions, feature suggestions, and bug reports are welcome! Open an issue o
|
|
|
1141
1141
|
|
|
1142
1142
|
---
|
|
1143
1143
|
|
|
1144
|
-
With
|
|
1144
|
+
With custom-pixi-particles, you're not just building animations; you're crafting immersive experiences! 🌟
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"bugs": {
|
|
4
4
|
"url": "https://github.com/lukasz-okuniewicz/custom-pixi-particles/issues"
|
|
5
5
|
},
|
|
6
|
-
"description": "
|
|
6
|
+
"description": "A highly customizable particle system for PixiJS designed for performance and flexibility.",
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@types/file-saver": "^2.0.7",
|
|
9
9
|
"copy-dir": "^1.3.0",
|
|
@@ -25,9 +25,12 @@
|
|
|
25
25
|
],
|
|
26
26
|
"homepage": "https://github.com/lukasz-okuniewicz/custom-pixi-particles",
|
|
27
27
|
"keywords": [
|
|
28
|
-
"custom",
|
|
29
28
|
"pixi",
|
|
30
|
-
"
|
|
29
|
+
"pixijs",
|
|
30
|
+
"particles",
|
|
31
|
+
"emitter",
|
|
32
|
+
"webgl",
|
|
33
|
+
"custom-pixi-particles"
|
|
31
34
|
],
|
|
32
35
|
"license": "GNU",
|
|
33
36
|
"main": "dist/index.js",
|
|
@@ -42,5 +45,5 @@
|
|
|
42
45
|
"lint": "tslint 'src/**/*.ts'",
|
|
43
46
|
"lint:fix": "tslint --fix 'src/**/*.ts'"
|
|
44
47
|
},
|
|
45
|
-
"version": "4.30.
|
|
48
|
+
"version": "4.30.3"
|
|
46
49
|
}
|