From 7f5b055c4e90b3176ac0760cc4d465fc4ecd5468 Mon Sep 17 00:00:00 2001 From: StickmanRed <100049599+StickmanRed@users.noreply.github.com> Date: Sun, 1 Feb 2026 12:49:07 -0800 Subject: [PATCH] Set _willBeRemoved to false for child clips Fixes a bug where breaking apart a parent clip causes child clips to be undeletable. --- engine/src/base/Frame.js | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/src/base/Frame.js b/engine/src/base/Frame.js index f38ff60d1..5f5f9f753 100644 --- a/engine/src/base/Frame.js +++ b/engine/src/base/Frame.js @@ -409,6 +409,7 @@ Wick.Frame = class extends Wick.Tickable { } this.addChild(clip); + clip._willBeRemoved = false; // Fixes a bug where breaking apart a parent clip causes child clips to be undeletable // Pre-render the clip's frames // (this fixes an issue where clips created from ClipAssets would be "missing" frames)