From 571bf98be2de7b0f1f1cc5ce3fc3bea673618ef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Sun, 23 Mar 2025 17:46:55 +0100 Subject: [PATCH] Fixed data cycle --- GlitchyEditor/src/EditorContentManager.bf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GlitchyEditor/src/EditorContentManager.bf b/GlitchyEditor/src/EditorContentManager.bf index d25d9d8..4329778 100644 --- a/GlitchyEditor/src/EditorContentManager.bf +++ b/GlitchyEditor/src/EditorContentManager.bf @@ -26,9 +26,9 @@ class EditorContentManager : IContentManager private append Dictionary _handleToAsset = .(); - private append AssetHierarchy _assetHierarchy = .(this); - private append AssetCache _assetCache = .(this); - private append AssetConverter _assetConverter = .(this); + private AssetHierarchy _assetHierarchy = new .(this) ~ delete _; + private AssetCache _assetCache = new .(this) ~ delete _; + private AssetConverter _assetConverter = new .(this) ~ delete _; private append List _reloadQueue = .();