@@ -65,8 +65,8 @@ const defaultVolumetricMeshOptions: NgtsVolumetricMeshOptions = {
6565} ;
6666
6767@Component ( {
68- selector : 'ngts-volumetric-mesh' ,
69- template : `
68+ selector : 'ngts-volumetric-mesh' ,
69+ template : `
7070 <ngt-mesh #mesh [geometry]="geometry()" [raycast]="null">
7171 <ngt-primitive *args="[material]" attach="material">
7272 <ngt-value attach="uniforms.opacity.value" [rawValue]="opacity()" />
@@ -83,9 +83,9 @@ const defaultVolumetricMeshOptions: NgtsVolumetricMeshOptions = {
8383 </ngt-primitive>
8484 </ngt-mesh>
8585 ` ,
86- schemas : [ CUSTOM_ELEMENTS_SCHEMA ] ,
87- changeDetection : ChangeDetectionStrategy . OnPush ,
88- imports : [ NgtArgs ]
86+ schemas : [ CUSTOM_ELEMENTS_SCHEMA ] ,
87+ changeDetection : ChangeDetectionStrategy . OnPush ,
88+ imports : [ NgtArgs ] ,
8989} )
9090export class NgtsVolumetricMesh {
9191 options = input ( defaultVolumetricMeshOptions , { transform : mergeInputs ( defaultVolumetricMeshOptions ) } ) ;
@@ -367,16 +367,16 @@ export class NgtsSpotLightShadowNoShader {
367367}
368368
369369@Component ( {
370- selector : 'ngts-spot-light-shadow' ,
371- template : `
370+ selector : 'ngts-spot-light-shadow' ,
371+ template : `
372372 @if (shader(); as shader) {
373373 <ngts-spot-light-shadow-shader [shader]="shader" [options]="options()" />
374374 } @else {
375375 <ngts-spot-light-shadow-no-shader [options]="options()" />
376376 }
377377 ` ,
378- imports : [ NgtsSpotLightShadowShader , NgtsSpotLightShadowNoShader ] ,
379- changeDetection : ChangeDetectionStrategy . OnPush
378+ imports : [ NgtsSpotLightShadowShader , NgtsSpotLightShadowNoShader ] ,
379+ changeDetection : ChangeDetectionStrategy . OnPush ,
380380} )
381381export class NgtsSpotLightShadow {
382382 shader = input < string > ( ) ;
@@ -395,8 +395,8 @@ const defaultOptions: NgtsSpotLightOptions = {
395395} ;
396396
397397@Component ( {
398- selector : 'ngts-spot-light' ,
399- template : `
398+ selector : 'ngts-spot-light' ,
399+ template : `
400400 <ngt-group>
401401 <ngt-spot-light
402402 #spotLight
@@ -417,9 +417,9 @@ const defaultOptions: NgtsSpotLightOptions = {
417417 <ng-content />
418418 </ngt-group>
419419 ` ,
420- schemas : [ CUSTOM_ELEMENTS_SCHEMA ] ,
421- changeDetection : ChangeDetectionStrategy . OnPush ,
422- imports : [ NgtArgs , NgtsVolumetricMesh , NgtsHelper ]
420+ schemas : [ CUSTOM_ELEMENTS_SCHEMA ] ,
421+ changeDetection : ChangeDetectionStrategy . OnPush ,
422+ imports : [ NgtsVolumetricMesh , NgtsHelper ] ,
423423} )
424424export class NgtsSpotLight {
425425 protected readonly SpotLightHelper = SpotLightHelper ;
0 commit comments