File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
src/content/docs/core/advanced Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,11 @@ export default defineConfig({
151
151
items : [
152
152
{ label : 'Directives' , slug : 'core/advanced/directives' } ,
153
153
{ label : 'Portals' , slug : 'core/advanced/portals' } ,
154
- { label : 'Routed Scene' , slug : 'core/advanced/routed-scene' } ,
154
+ {
155
+ label : 'Routed Scene' ,
156
+ slug : 'core/advanced/routed-scene' ,
157
+ badge : { text : 'Bug' , variant : 'danger' } ,
158
+ } ,
155
159
{ label : 'Performance' , slug : 'core/advanced/performance' } ,
156
160
] ,
157
161
} ,
Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ description: Details about the Angular Three `NgtRoutedScene`
5
5
6
6
import { Tabs , TabItem } from ' @astrojs/starlight/components' ;
7
7
8
+ :::danger
9
+
10
+ This is no longer working due to [ a fix in Angular Router] ( https://github.com/angular/angular/commit/3839cfbb18fcc70cae5a6ba4ba7676b1c4acf7a0 ) .
11
+ We will re-enable this feature once a workaround is found or a new fix is released.
12
+
13
+ :::
14
+
8
15
Angular Three supports routed scenes. This is useful for when you want to have different scene graphs for different routes but keep the
9
16
root ` NgtCanvas ` component the same.
10
17
You can’t perform that action at this time.
0 commit comments