From 98029c18e8a2ad8e2fac6969e44c787ef0dde77a Mon Sep 17 00:00:00 2001 From: luboslenco Date: Wed, 4 Dec 2024 19:19:16 +0100 Subject: [PATCH] Add obj_runtime_t --- armorcore/sources/ts/scene.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/armorcore/sources/ts/scene.ts b/armorcore/sources/ts/scene.ts index 61534ab3..f8b04329 100644 --- a/armorcore/sources/ts/scene.ts +++ b/armorcore/sources/ts/scene.ts @@ -770,6 +770,11 @@ type obj_t = { anim?: anim_t; // Bone/object animation material_refs?: string[]; children?: obj_t[]; + _?: obj_runtime_t; +}; + +type obj_runtime_t = { + _gc?: scene_t; // Link to armpack_decode result }; type particles_t = {