Update CHAT_CONTEXT.md and related code for project JSON format and asset handling

This commit is contained in:
2026-03-31 17:45:18 +02:00
parent d0460613b0
commit 297176b2d6
3 changed files with 11 additions and 6 deletions

View File

@@ -74,14 +74,14 @@ export function RunnerCanvas({
}
}, [onFirstPersonTelemetryChange, onInteractionPromptChange, onRuntimeMessageChange]);
useEffect(() => {
hostRef.current?.loadScene(runtimeScene);
}, [runtimeScene]);
useEffect(() => {
hostRef.current?.updateAssets(projectAssets, loadedModelAssets);
}, [projectAssets, loadedModelAssets]);
useEffect(() => {
hostRef.current?.loadScene(runtimeScene);
}, [runtimeScene]);
useEffect(() => {
hostRef.current?.setNavigationMode(navigationMode);
}, [navigationMode]);