diff --git a/packages/graphics/src/GraphicsData.js b/packages/graphics/src/GraphicsData.js index ba550f1..8f6cae2 100644 --- a/packages/graphics/src/GraphicsData.js +++ b/packages/graphics/src/GraphicsData.js @@ -53,7 +53,7 @@ /** * The collection of holes. - * @member {number[]} + * @member {PIXI.GraphicsData[]} */ this.holes = []; } diff --git a/packages/graphics/src/GraphicsData.js b/packages/graphics/src/GraphicsData.js index ba550f1..8f6cae2 100644 --- a/packages/graphics/src/GraphicsData.js +++ b/packages/graphics/src/GraphicsData.js @@ -53,7 +53,7 @@ /** * The collection of holes. - * @member {number[]} + * @member {PIXI.GraphicsData[]} */ this.holes = []; } diff --git a/packages/graphics/src/GraphicsGeometry.js b/packages/graphics/src/GraphicsGeometry.js index 4c4446d..04d6f2d 100644 --- a/packages/graphics/src/GraphicsGeometry.js +++ b/packages/graphics/src/GraphicsGeometry.js @@ -112,14 +112,6 @@ this.graphicsData = []; /** - * Graphics data representing holes in the graphicsData. - * - * @member {PIXI.GraphicsData[]} - * @protected - */ - this.graphicsDataHoles = []; - - /** * Used to detect if the graphics object has changed. If this is set to true then the graphics * object will be recalculated. * @@ -352,8 +344,6 @@ this.indexBuffer = null; this.graphicsData.length = 0; this.graphicsData = null; - this.graphicsDataHoles.length = 0; - this.graphicsDataHoles = null; this.drawCalls.length = 0; this.drawCalls = null; this.batches.length = 0;