avocado-old/packages/graphics/index.js

18 lines
565 B
JavaScript
Raw Normal View History

2019-03-25 19:02:30 -05:00
const PIXI = 'undefined' !== typeof window ? require('pixi.js') : undefined;
2019-03-19 18:05:58 -05:00
export {AnimationView} from './animation-view';
2019-03-25 19:03:34 -05:00
export {Canvas} from './canvas';
2019-03-18 20:06:47 -05:00
export {Color} from './color';
export {Container} from './container';
2019-03-19 18:04:37 -05:00
export {hasGraphics} from './has-graphics';
2019-03-18 20:06:47 -05:00
export {Image} from './image';
export {Primitives} from './primitives';
export {Renderable} from './renderable';
export {Renderer} from './renderer';
2019-03-22 13:15:57 -05:00
export {ShapeView} from './shape-view';
2019-03-18 20:06:47 -05:00
export {Sprite} from './sprite';
2019-03-25 19:02:30 -05:00
if (PIXI) {
2019-03-25 20:25:33 -05:00
PIXI.settings.SCALE_MODE = PIXI.SCALE_MODES.NEAREST
2019-03-25 19:02:30 -05:00
}