lythreeframe 1.2.20 → 1.2.21
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/bundle.cjs.js
CHANGED
|
@@ -1318,12 +1318,12 @@ const DefaultAAParams = {
|
|
|
1318
1318
|
};
|
|
1319
1319
|
|
|
1320
1320
|
const DefaultPostProcessParam = {
|
|
1321
|
-
bloom: DefaultBloomParam,
|
|
1322
|
-
dof: DefaultDOFParam,
|
|
1323
|
-
ssr: DefaultSSRParam,
|
|
1324
|
-
gtao: DefaultGTAOParam,
|
|
1325
|
-
outline: DefaultOutlineParams,
|
|
1326
|
-
aa: DefaultAAParams
|
|
1321
|
+
bloom: Object.assign({}, DefaultBloomParam),
|
|
1322
|
+
dof: Object.assign({}, DefaultDOFParam),
|
|
1323
|
+
ssr: Object.assign({}, DefaultSSRParam),
|
|
1324
|
+
gtao: Object.assign({}, DefaultGTAOParam),
|
|
1325
|
+
outline: Object.assign({}, DefaultOutlineParams),
|
|
1326
|
+
aa: Object.assign({}, DefaultAAParams)
|
|
1327
1327
|
};
|
|
1328
1328
|
|
|
1329
1329
|
class World {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -1316,12 +1316,12 @@ const DefaultAAParams = {
|
|
|
1316
1316
|
};
|
|
1317
1317
|
|
|
1318
1318
|
const DefaultPostProcessParam = {
|
|
1319
|
-
bloom: DefaultBloomParam,
|
|
1320
|
-
dof: DefaultDOFParam,
|
|
1321
|
-
ssr: DefaultSSRParam,
|
|
1322
|
-
gtao: DefaultGTAOParam,
|
|
1323
|
-
outline: DefaultOutlineParams,
|
|
1324
|
-
aa: DefaultAAParams
|
|
1319
|
+
bloom: Object.assign({}, DefaultBloomParam),
|
|
1320
|
+
dof: Object.assign({}, DefaultDOFParam),
|
|
1321
|
+
ssr: Object.assign({}, DefaultSSRParam),
|
|
1322
|
+
gtao: Object.assign({}, DefaultGTAOParam),
|
|
1323
|
+
outline: Object.assign({}, DefaultOutlineParams),
|
|
1324
|
+
aa: Object.assign({}, DefaultAAParams)
|
|
1325
1325
|
};
|
|
1326
1326
|
|
|
1327
1327
|
class World {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Object3D } from 'three/src/Three.WebGPU.Nodes.js';
|
|
2
2
|
import { ShadowMapType, ToneMapping, WebGPURenderer } from "three/webgpu";
|
|
3
|
+
import { AAParams } from "../PostProcess/Param/AAParam";
|
|
3
4
|
import { BloomParam } from "../PostProcess/Param/Bloom";
|
|
4
5
|
import { DOFParam } from '../PostProcess/Param/DOF';
|
|
5
6
|
import { GTAOParam } from "../PostProcess/Param/GTAO";
|
|
@@ -9,7 +10,6 @@ import { ThreeJsApp } from "../ThreeJsApp";
|
|
|
9
10
|
import { PostProcessParam } from './../PostProcess/PostProcessParam';
|
|
10
11
|
import { RendererParameters } from './Parameters/RendererParameters';
|
|
11
12
|
import { ViewportParam } from './Parameters/ViewportParameters';
|
|
12
|
-
import { AAParams } from "../PostProcess/Param/AAParam";
|
|
13
13
|
export declare class Viewport {
|
|
14
14
|
get canvas(): HTMLElement | null;
|
|
15
15
|
get renderer(): WebGPURenderer;
|