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 = {
53
53
</ngt-orthographic-camera>
54
54
55
55
<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
+ />
57
60
</ngt-group>
58
61
` ,
59
62
imports : [ NgTemplateOutlet ] ,
Original file line number Diff line number Diff line change @@ -45,7 +45,10 @@ const defaultOptions: NgtsPerspectiveCameraOptions = {
45
45
</ngt-perspective-camera>
46
46
47
47
<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
+ />
49
52
</ngt-group>
50
53
` ,
51
54
imports : [ NgTemplateOutlet ] ,
You can’t perform that action at this time.
0 commit comments