Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WebGPURenderer: Add PCFShadowMap support. #28926

Merged
merged 10 commits into from
Jul 23, 2024
Prev Previous commit
Next Next commit
AnalyticLightNode: Revert cache key change.
  • Loading branch information
Mugen87 committed Jul 21, 2024
commit 6899412900367500d43f2a7d4768a609861fe0c3
2 changes: 1 addition & 1 deletion src/nodes/lighting/AnalyticLightNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class AnalyticLightNode extends LightingNode {

getCacheKey() {

return super.getCacheKey() + '-' + ( this.light.id + '-' + ( this.light.castShadow ? '1' : '0' ) + ( this.light.receiveShadow ? '1' : '0' ) );
return super.getCacheKey() + '-' + ( this.light.id + '-' + ( this.light.castShadow ? '1' : '0' ) );

}

Expand Down