From ba02dfa4832293e2e382cacc790fb839fcfc0f59 Mon Sep 17 00:00:00 2001 From: Davide Tantillo Date: Fri, 20 Feb 2026 12:40:52 +0100 Subject: [PATCH] [ts][pixi-v7] Fix setup pose flash on first frame. See #3029. --- spine-ts/spine-pixi-v7/src/Spine.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spine-ts/spine-pixi-v7/src/Spine.ts b/spine-ts/spine-pixi-v7/src/Spine.ts index 15d83997c..acb59c0e0 100644 --- a/spine-ts/spine-pixi-v7/src/Spine.ts +++ b/spine-ts/spine-pixi-v7/src/Spine.ts @@ -338,7 +338,9 @@ export class Spine extends Container { this.interactiveChildren = true; this.hitArea = null; } - this.calculateBounds(); + if (!this.hasNeverUpdated) { + this.calculateBounds(); + } } private _boundsPoint = new Point(); private _boundsSpineID = -1;