Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
alxart committed Apr 24, 2024
1 parent f38f3f5 commit 1c29088
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/types/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
/**
Expand Down

0 comments on commit 1c29088

Please sign in to comment.