feat(k1): complete primary acquisition lifecycle

This commit is contained in:
DCCONSTRUCTIONS
2026-07-17 23:03:59 +03:00
parent 9d51080d2e
commit aa3680948f
66 changed files with 6093 additions and 544 deletions
@@ -0,0 +1,11 @@
export async function runAutomaticSpatialSourceStart(
start: () => Promise<boolean>,
activateAutomaticSpatialSource: () => void,
openSpatialScene: () => void,
): Promise<boolean> {
const started = await start();
if (!started) return false;
activateAutomaticSpatialSource();
openSpatialScene();
return true;
}