Skip to content

Commit 852b776

Browse files
committed
fix(soba/staging): use boolean coercions
1 parent 5097fc2 commit 852b776

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/soba/staging/src/lib/accumulative-shadows.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ const defaultOptions: NgtsAccumulativeShadowsOptions = {
6464
<ng-content />
6565
</ngt-group>
6666
67-
<ngt-mesh #plane [scale]="scale()" [rotation]="[-Math.PI / 2, 0, 0]" [receiveShadow]="true">
67+
<ngt-mesh #plane [scale]="scale()" [rotation]="[-Math.PI / 2, 0, 0]" receiveShadow>
6868
<ngt-plane-geometry />
6969
<ngt-soft-shadow-material
7070
[depthWrite]="false"
7171
[toneMapped]="toneMapped()"
7272
[color]="color()"
7373
[blend]="colorBlend()"
7474
[map]="map()"
75-
[transparent]="true"
75+
transparent
7676
/>
7777
</ngt-mesh>
7878
</ngt-group>

0 commit comments

Comments
 (0)