From 1c29088f4231b8ef03639abf25ed15fc7be266c6 Mon Sep 17 00:00:00 2001 From: Alexander Artemev Date: Wed, 24 Apr 2024 22:07:04 +0700 Subject: [PATCH] f --- src/types/plugin.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/types/plugin.ts b/src/types/plugin.ts index 230e4d1..4f6493c 100644 --- a/src/types/plugin.ts +++ b/src/types/plugin.ts @@ -57,9 +57,11 @@ export interface PluginOptions { */ modelsBaseUrl?: string; /** - * Strategies for loading of models: - * - dontWaitAll - show models as soon as possible. - * - waitAll - show models only when all models are ready for rendering. + * Strategies for loading and rendering of models: + * - dontWaitAll - show every model on its loading completion. In case of a realty scene it allows to download less data and + * show every model in the scene as soon as possible, but there will be a delay between switching floor plans if they are not loaded. + * - waitAll - show models only when all models are loaded. In case of a realty scene it leads to an increase in amount of + * loaded data and time of rendering scene, but it allows to avoid a delay between switching floor plans. */ modelsLoadStrategy?: 'dontWaitAll' | 'waitAll'; /**