pixi.js 6.3.2 → 6.5.0-rc
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 +8 -4
- package/dist/browser/pixi.js +43522 -26983
- package/dist/browser/pixi.js.map +1 -1
- package/dist/browser/pixi.min.js +3 -3
- package/dist/browser/pixi.min.js.map +1 -1
- package/dist/browser/pixi.min.mjs +3 -3
- package/dist/browser/pixi.min.mjs.map +1 -1
- package/dist/browser/pixi.mjs +42121 -25591
- package/dist/browser/pixi.mjs.map +1 -1
- package/dist/cjs/pixi.js +14 -26
- package/dist/cjs/pixi.js.map +1 -1
- package/dist/cjs/pixi.min.js +3 -3
- package/dist/cjs/pixi.min.js.map +1 -1
- package/dist/esm/pixi.js +10 -23
- package/dist/esm/pixi.js.map +1 -1
- package/dist/esm/pixi.min.js +3 -3
- package/dist/esm/pixi.min.js.map +1 -1
- package/index.d.ts +3 -2
- package/package.json +50 -38
package/README.md
CHANGED
|
@@ -7,11 +7,17 @@ The aim of this project is to provide a fast lightweight 2D library that works
|
|
|
7
7
|
across all devices. The PixiJS renderer allows everyone to enjoy the power of
|
|
8
8
|
hardware acceleration without prior knowledge of WebGL. Also, it's fast. Really fast.
|
|
9
9
|
|
|
10
|
-
**
|
|
10
|
+
**We are now a part of the [Open Collective](https://opencollective.com/pixijs) and with your support you can help us make PixiJS even better. To make a donation, simply click the button below and we'll love you forever!**
|
|
11
|
+
|
|
12
|
+
<div align="center">
|
|
13
|
+
<a href="https://opencollective.com/pixijs/donate" target="_blank">
|
|
14
|
+
<img src="https://opencollective.com/pixijs/donate/button@2x.png?color=blue" width=250 />
|
|
15
|
+
</a>
|
|
16
|
+
</div>
|
|
11
17
|
|
|
12
18
|
### Setup
|
|
13
19
|
|
|
14
|
-
PixiJS can be installed with [npm](https://docs.npmjs.com/getting-started/what-is-npm) to
|
|
20
|
+
PixiJS can be installed with [npm](https://docs.npmjs.com/getting-started/what-is-npm) to integrate with [Webpack](https://webpack.js.org/)](https://webpack.js.org/), [Browserify](http://browserify.org/), [Rollup](https://rollupjs.org/), [Electron](https://electron.atom.io/), [NW.js](https://nwjs.io/) or other module backed environments.
|
|
15
21
|
|
|
16
22
|
#### Install
|
|
17
23
|
|
|
@@ -63,5 +69,3 @@ app.loader.add('bunny', 'bunny.png').load((loader, resources) => {
|
|
|
63
69
|
### License
|
|
64
70
|
|
|
65
71
|
This content is released under the (http://opensource.org/licenses/MIT) MIT License.
|
|
66
|
-
|
|
67
|
-
[](https://github.com/igrigorik/ga-beacon)
|