We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3562d71 commit 59db3aeCopy full SHA for 59db3ae
libs/core/src/lib/canvas.ts
@@ -66,7 +66,10 @@ export class NgtCanvas {
66
67
sceneGraph = input.required<Type<any>, Type<any> | 'routed'>({
68
transform: (value) => {
69
- if (value === 'routed') return NgtRoutedScene;
+ if (value === 'routed') {
70
+ console.warn(`[NGT] 'routed' sceneGraph is not working properly.`);
71
+ return NgtRoutedScene;
72
+ }
73
return value;
74
},
75
});
0 commit comments