diff --git a/src/Spine.ts b/src/Spine.ts index f74c207..51fcd40 100644 --- a/src/Spine.ts +++ b/src/Spine.ts @@ -239,9 +239,11 @@ export class Spine extends Container implements View if (this.didViewUpdate) return; this.didViewUpdate = true; - if (this.renderGroup) + const renderGroup = this.renderGroup || this.parentRenderGroup; + + if (renderGroup) { - this.renderGroup.onChildViewUpdate(this); + renderGroup.onChildViewUpdate(this); } this.debug?.renderDebug(this);