-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e73535f
commit 35d0e1a
Showing
101 changed files
with
165 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,6 @@ docs | |
dist | ||
lib | ||
deploy | ||
tools/demo/index.js | ||
tools/demo/index.js.map | ||
.DS_Store | ||
/out | ||
/screenshots | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"globals": { | ||
"PIXI": true, | ||
"lil": true, | ||
"ga": true | ||
}, | ||
"rules": { | ||
"func-names": "off" | ||
} | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,13 +8,14 @@ | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/font-awesome.min.css" /> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> | ||
<script src="https://pixijs.download/next-v8/pixi.min.js"></script> | ||
<link rel="stylesheet" href="index.css" /> | ||
<script src="../dist/pixi-filters.js"></script> | ||
<link rel="stylesheet" href="./index.css" /> | ||
</head> | ||
<body> | ||
<div id="container"> | ||
<canvas id="stage" width="300" height="300"></canvas> | ||
<a id="logo" href="http://www.pixijs.com"><img src="images/pixijs-logo.png"></a> | ||
</div> | ||
<script src="index.js"></script> | ||
<script type="module" src="./src/index.mjs"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions
3
tools/demo/src/filters/color-gradient.js → examples/src/filters/color-gradient.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 1 addition & 3 deletions
4
tools/demo/src/filters/displacement.js → examples/src/filters/displacement.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* eslint-disable simple-import-sort/exports */ | ||
// Order here is the dat-gui order | ||
export { default as adjustment } from './adjustment.mjs'; | ||
export { default as advancedBloom } from './advanced-bloom.mjs'; | ||
export { default as alpha } from './alpha.mjs'; | ||
export { default as ascii } from './ascii.mjs'; | ||
export { default as bevel } from './bevel.mjs'; | ||
export { default as bloom } from './bloom.mjs'; | ||
export { default as blur } from './blur.mjs'; | ||
export { default as bulgePinch } from './bulge-pinch.mjs'; | ||
export { default as colorGradient } from './color-gradient.mjs'; | ||
export { default as colorMap } from './color-map.mjs'; | ||
export { default as colorMatrix } from './color-matrix.mjs'; | ||
export { default as colorOverlay } from './color-overlay.mjs'; | ||
export { default as colorReplace } from './color-replace.mjs'; | ||
export { default as convolution } from './convolution.mjs'; | ||
export { default as crossHatch } from './cross-hatch.mjs'; | ||
export { default as crt } from './crt.mjs'; | ||
export { default as displacement } from './displacement.mjs'; | ||
export { default as dot } from './dot.mjs'; | ||
export { default as dropShadow } from './drop-shadow.mjs'; | ||
export { default as emboss } from './emboss.mjs'; | ||
export { default as glitch } from './glitch.mjs'; | ||
export { default as glow } from './glow.mjs'; | ||
export { default as godray } from './godray.mjs'; | ||
export { default as grayscale } from './grayscale.mjs'; | ||
export { default as hslAdjustment } from './hsl-adjustment.mjs'; | ||
export { default as kawaseBlur } from './kawase-blur.mjs'; | ||
export { default as motionBlur } from './motion-blur.mjs'; | ||
export { default as multiColorReplace } from './multi-color-replace.mjs'; | ||
export { default as noise } from './noise.mjs'; | ||
export { default as oldFilm } from './old-film.mjs'; | ||
export { default as outline } from './outline.mjs'; | ||
export { default as pixelate } from './pixelate.mjs'; | ||
export { default as radialBlur } from './radial-blur.mjs'; | ||
export { default as reflection } from './reflection.mjs'; | ||
export { default as rgb } from './rgb.mjs'; | ||
export { default as shockwave } from './shockwave.mjs'; | ||
export { default as simpleLightmap } from './lightmap.mjs'; | ||
export { default as tiltShift } from './tilt-shift.mjs'; | ||
export { default as twist } from './twist.mjs'; | ||
export { default as zoomBlur } from './zoom-blur.mjs'; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
/* global ga*/ | ||
/* eslint-disable */ | ||
(function (i, s, o, g, r, a, m) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.