File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
libs/soba/cameras/src/lib Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,10 @@ const defaultOptions: NgtsOrthographicCameraOptions = {
5353 </ngt-orthographic-camera>
5454
5555 <ngt-group #group>
56- <ng-container [ngTemplateOutlet]="cameraContent() ?? null" [ngTemplateOutletContext]="{ $implicit: fbo }" />
56+ <ng-container
57+ [ngTemplateOutlet]="cameraContent() ?? null"
58+ [ngTemplateOutletContext]="{ $implicit: fbo.texture }"
59+ />
5760 </ngt-group>
5861 ` ,
5962 imports : [ NgTemplateOutlet ] ,
Original file line number Diff line number Diff line change @@ -45,7 +45,10 @@ const defaultOptions: NgtsPerspectiveCameraOptions = {
4545 </ngt-perspective-camera>
4646
4747 <ngt-group #group>
48- <ng-container [ngTemplateOutlet]="cameraContent() ?? null" [ngTemplateOutletContext]="{ $implicit: fbo }" />
48+ <ng-container
49+ [ngTemplateOutlet]="cameraContent() ?? null"
50+ [ngTemplateOutletContext]="{ $implicit: fbo.texture }"
51+ />
4952 </ngt-group>
5053 ` ,
5154 imports : [ NgTemplateOutlet ] ,
You can’t perform that action at this time.
0 commit comments