@d5techs/3dgs-lib 1.4.51 → 1.4.52
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/3dgs-lib.cjs +7 -47
- package/dist/3dgs-lib.cjs.map +1 -1
- package/dist/3dgs-lib.js +7 -47
- package/dist/3dgs-lib.js.map +1 -1
- package/dist/App.d.ts +0 -1
- package/dist/core/SkyboxRenderer.d.ts +1 -2
- package/package.json +1 -1
package/dist/App.d.ts
CHANGED
|
@@ -187,7 +187,6 @@ export declare class App {
|
|
|
187
187
|
}): Promise<void>;
|
|
188
188
|
clearSkybox(): void;
|
|
189
189
|
isSkyboxActive(): boolean;
|
|
190
|
-
setSkyboxAlignToGround(value: boolean): void;
|
|
191
190
|
getTransformGizmo(): import(".").TransformGizmo;
|
|
192
191
|
getViewportGizmo(): import(".").ViewportGizmo;
|
|
193
192
|
setViewportGizmoVisible(visible: boolean): void;
|
|
@@ -8,11 +8,10 @@ export declare class SkyboxRenderer {
|
|
|
8
8
|
private cubeTexture;
|
|
9
9
|
private cubeBindGroup;
|
|
10
10
|
private frameReady;
|
|
11
|
-
alignToGround: boolean;
|
|
12
11
|
constructor(device: GPUDevice, format: GPUTextureFormat, depthFormat: GPUTextureFormat);
|
|
13
12
|
get isActive(): boolean;
|
|
14
13
|
loadCubemap(faceUrls: [string, string, string, string, string, string]): Promise<void>;
|
|
15
|
-
prepareFrame(viewMatrix: Float32Array, projectionMatrix: Float32Array
|
|
14
|
+
prepareFrame(viewMatrix: Float32Array, projectionMatrix: Float32Array): void;
|
|
16
15
|
draw(pass: GPURenderPassEncoder): void;
|
|
17
16
|
clear(): void;
|
|
18
17
|
destroy(): void;
|