@zephyr3d/scene 0.9.7 → 0.9.8
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/animation/animationset.js +52 -55
- package/dist/animation/animationset.js.map +1 -1
- package/dist/animation/joint_dynamics_modifier.js +19 -19
- package/dist/animation/joint_dynamics_modifier.js.map +1 -1
- package/dist/app/engine.js +131 -131
- package/dist/app/engine.js.map +1 -1
- package/dist/avatar/wardrobe.js +13 -13
- package/dist/avatar/wardrobe.js.map +1 -1
- package/dist/camera/camera.js +201 -201
- package/dist/camera/camera.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/material/mixins/lightmodel/pbrmetallicroughness.js +5 -5
- package/dist/material/mixins/lightmodel/pbrmetallicroughness.js.map +1 -1
- package/dist/material/mtoon.js +4 -4
- package/dist/material/mtoon.js.map +1 -1
- package/dist/material/pbrblueprint.js +11 -11
- package/dist/material/pbrblueprint.js.map +1 -1
- package/dist/material/shader/helper.js +284 -284
- package/dist/material/shader/helper.js.map +1 -1
- package/dist/posteffect/ssr.js +9 -9
- package/dist/posteffect/ssr.js.map +1 -1
- package/dist/render/lightpass.js +5 -5
- package/dist/render/lightpass.js.map +1 -1
- package/dist/render/renderer.js +7 -7
- package/dist/render/renderer.js.map +1 -1
- package/dist/shadow/esm.js +1 -1
- package/dist/shadow/esm.js.map +1 -1
- package/dist/shadow/shadow_region.js +45 -45
- package/dist/shadow/shadow_region.js.map +1 -1
- package/dist/utility/serialization/manager.js +275 -275
- package/dist/utility/serialization/manager.js.map +1 -1
- package/dist/utility/serialization/scene/camera.js.map +1 -1
- package/dist/utility/serialization/scene/mesh.js.map +1 -1
- package/dist/utility/serialization/scene/sprite.js.map +1 -1
- package/package.json +1 -1
package/dist/posteffect/ssr.js
CHANGED
|
@@ -26,13 +26,13 @@ import '../material/sprite_std.js';
|
|
|
26
26
|
import '../utility/blueprint/material/texture.js';
|
|
27
27
|
import { RGHistoryResources } from '../render/rendergraph/history_resources.js';
|
|
28
28
|
|
|
29
|
-
/**
|
|
30
|
-
* SSR post effect
|
|
31
|
-
*
|
|
32
|
-
* @remarks
|
|
33
|
-
* Internal used in light pass
|
|
34
|
-
*
|
|
35
|
-
* @internal
|
|
29
|
+
/**
|
|
30
|
+
* SSR post effect
|
|
31
|
+
*
|
|
32
|
+
* @remarks
|
|
33
|
+
* Internal used in light pass
|
|
34
|
+
*
|
|
35
|
+
* @internal
|
|
36
36
|
*/ class SSR extends AbstractPostEffect {
|
|
37
37
|
static _programs = {};
|
|
38
38
|
static _resolveProgram = {};
|
|
@@ -44,8 +44,8 @@ import { RGHistoryResources } from '../render/rendergraph/history_resources.js';
|
|
|
44
44
|
_resolveBindGroup;
|
|
45
45
|
_combineBindGroup;
|
|
46
46
|
_temporalBindGroup;
|
|
47
|
-
/**
|
|
48
|
-
* Creates an instance of SSR post effect
|
|
47
|
+
/**
|
|
48
|
+
* Creates an instance of SSR post effect
|
|
49
49
|
*/ constructor(){
|
|
50
50
|
super();
|
|
51
51
|
this._layer = PostEffectLayer.opaque;
|