refactor: PIXI shims

This commit is contained in:
cha0s 2019-11-22 02:19:57 -06:00
parent 02fcc9968c
commit 20f7ca8853
8 changed files with 0 additions and 81 deletions

View File

@ -1,40 +0,0 @@
export const BLEND_MODES = {
NORMAL: 0,
ADD: 1,
MULTIPLY: 2,
SCREEN: 3,
OVERLAY: 4,
DARKEN: 5,
LIGHTEN: 6,
COLOR_DODGE: 7,
COLOR_BURN: 8,
HARD_LIGHT: 9,
SOFT_LIGHT: 10,
DIFFERENCE: 11,
EXCLUSION: 12,
HUE: 13,
SATURATION: 14,
COLOR: 15,
LUMINOSITY: 16,
NORMAL_NPM: 17,
ADD_NPM: 18,
SCREEN_NPM: 19,
NONE: 20,
SRC_OVER: 0,
SRC_IN: 21,
SRC_OUT: 22,
SRC_ATOP: 23,
DST_OVER: 24,
DST_IN: 25,
DST_OUT: 26,
DST_ATOP: 27,
ERASE: 26,
SUBTRACT: 28,
XOR: 29,
};
export const SCALE_MODES = {
NEAREST: 0,
LINEAR: 1,
};

View File

@ -1,13 +0,0 @@
export class BaseRenderer {}
export class BaseTexture {}
export class BatchRenderer {}
export class Filter {}
export class Renderer {
static registerPlugin() {}
}
export class RenderTexture {}
export class Texture {}
export const defaultFilterVertex = '';

View File

@ -1 +0,0 @@
export class Container {}

View File

@ -1,4 +0,0 @@
import {settings} from './settings';
export {settings};
export const isMobile = settings.isMobile;

View File

@ -1,6 +0,0 @@
export const settings = {
isMobile: {
android: {},
apple: {},
},
};

View File

@ -26,23 +26,6 @@ config.externals = [
whitelist: /(?:@avocado|@pixi|webpack\/hot\/signal)/,
}),
];
const pixiPackages = [
'constants',
'core',
'display',
'graphics',
'settings',
'text',
];
pixiPackages.forEach((pixiPackage) => {
config.resolve.alias[`@pixi/${pixiPackage}`] = path.join(
__dirname,
'server',
'shim',
'pixi',
pixiPackage,
);
});
config.module.rules[0].use.options.configFile = path.resolve(
__dirname, 'babel.server.config.js'
);