From 8d39c09de06828c741668f6898e2de4e0951e181 Mon Sep 17 00:00:00 2001 From: Gordon Cummings <57897263+GordonTombola@users.noreply.github.com> Date: Mon, 12 Aug 2024 10:38:35 +0100 Subject: [PATCH] formatting was auto using spaces over tabs --- spine-ts/spine-pixi/src/Spine.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spine-ts/spine-pixi/src/Spine.ts b/spine-ts/spine-pixi/src/Spine.ts index b22642cfb..608b79332 100644 --- a/spine-ts/spine-pixi/src/Spine.ts +++ b/spine-ts/spine-pixi/src/Spine.ts @@ -341,7 +341,7 @@ export class Spine extends Container { if (!pixiMaskSource.computed) { pixiMaskSource.computed = true; const clippingAttachment = pixiMaskSource.slot.attachment as ClippingAttachment; - const world = new Array(clippingAttachment.worldVerticesLength); + const world = new Array(clippingAttachment.worldVerticesLength); clippingAttachment.computeWorldVertices(pixiMaskSource.slot, 0, clippingAttachment.worldVerticesLength, world, 0, 2); mask.clear().lineStyle(0).beginFill(0x000000).drawPolygon(world); } @@ -491,7 +491,7 @@ export class Spine extends Container { } const mesh = this.getMeshForSlot(slot); - mesh.renderable = true; + mesh.renderable = true; mesh.zIndex = zIndex; mesh.updateFromSpineData(texture, slot.data.blendMode, slot.data.name, finalVertices, finalVerticesLength, finalIndices, finalIndicesLength, useDarkColor); }