- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
/* eslint-disable spaced-comment */
/// <reference path="../global.d.ts" />
import { applyDisplayMixin, applyContainerRenderMixin, applyParticleMixin } from './DisplayMixin';
import { applyRendererMixin, applyCanvasMixin, ILayeredRenderer } from './RendererMixin';
import { Renderer } from '@pixi/core';
export * from './Stage';
export * from './Layer';
export * from './Group';
export { applyDisplayMixin, applyCanvasMixin, applyContainerRenderMixin, applyRendererMixin, applyParticleMixin };
export { ILayeredRenderer };
applyDisplayMixin();
applyRendererMixin(Renderer);
/**
* The {@link Group group} in which this display object should be rendered.
*
* This is provided by **@pixi/layers**.
*
* @memberof PIXI.DisplayObject
* @member {Group}
* @name parentGroup
*/
/**
* The {@link Layer layer} in which this display object should be rendered; don't set this if you're
* using {@link PIXI.DisplayObject#parentLayer}.
*
* This is provided by **@pixi/layers**.
*
* @memberof PIXI.DisplayObject
* @member {Layer}
* @name parentLayer
*/
/**
* Objects in a {@link Group group} are sorted by z-order.
* This can be used alongside PixiJS' built-in {@link PIXI.DisplayObject#zIndex zIndex}.
*
* If you use both {@code zIndex} and {@code zOrder}, objects will first be sorted by z-index
* and then @pixi/layers will sort by z-order.
*
* This is provided by **@pixi/layers**.
*
* @memberof PIXI.DisplayObject
* @member {number}
* @name zOrder
*/