vis-core 0.31.29 → 0.31.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +9 -2
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -104,8 +104,15 @@ export declare class Base extends Camera {
|
|
|
104
104
|
re: RoomEnvironment | null;
|
|
105
105
|
roomEnvMap?: THREE.Texture;
|
|
106
106
|
visName: string;
|
|
107
|
+
private detectRes?;
|
|
107
108
|
publicDir: Record<string, string>;
|
|
108
109
|
constructor(options: BaseOptions);
|
|
110
|
+
private getDetectRes;
|
|
111
|
+
private getQueryOverrides;
|
|
112
|
+
private getEffectiveLogarithmicDepthBuffer;
|
|
113
|
+
private getEffectiveTier;
|
|
114
|
+
private isExtClipControlAvailable;
|
|
115
|
+
private resolveRendererDepthBufferOptions;
|
|
109
116
|
private showDetectRes;
|
|
110
117
|
setOptions(options: Record<string, any>): void;
|
|
111
118
|
syncExtendsOptionToScene(name: string, value: any): void;
|
|
@@ -1015,7 +1022,7 @@ declare class Model extends GroupObject {
|
|
|
1015
1022
|
* Get all available animation clip names
|
|
1016
1023
|
*/
|
|
1017
1024
|
getClipNames(): string[];
|
|
1018
|
-
rebuildFromScene(): void
|
|
1025
|
+
rebuildFromScene(): Promise<void>;
|
|
1019
1026
|
instantiate(ops?: Parameters<GroupObject['instantiate']>[0]): Promise<this>;
|
|
1020
1027
|
/**
|
|
1021
1028
|
* Update animations - should be called in render loop
|
|
@@ -1373,7 +1380,7 @@ export { TWEEN }
|
|
|
1373
1380
|
|
|
1374
1381
|
export { Tween }
|
|
1375
1382
|
|
|
1376
|
-
export declare const VERSION = "0.31.
|
|
1383
|
+
export declare const VERSION = "0.31.30";
|
|
1377
1384
|
|
|
1378
1385
|
export { }
|
|
1379
1386
|
|