File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/components/crystal-toolkit/scene Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -658,6 +658,8 @@ export default class Scene {
658
658
} ) ;
659
659
} ;
660
660
661
+ const updateMaxTiling = ( ) => { } ;
662
+
661
663
// TODO: does it make sense to split this code into two cases?
662
664
// set up the threeObjects and containers
663
665
let arrayOfTileRoots : number [ ] [ ] [ ] [ ] ;
@@ -671,11 +673,12 @@ export default class Scene {
671
673
arrayOfTileRoots = _getEmptyTilesArray ( maxTilingArray ) ;
672
674
traverseTiles ( sceneJson , rootObject , tiles , arrayOfTileRoots ) ;
673
675
updateTiles ( arrayOfTileRoots , this . tiling ) ;
676
+ console . log ( arrayOfTileRoots ) ;
674
677
} else {
675
678
rootObject . name = sceneJson . name ! ;
676
679
sceneJson . visible && ( rootObject . visible = sceneJson . visible ) ;
677
680
traverseScene ( sceneJson , rootObject , emptyLattice , '' ) ;
678
- }
681
+ } // TODO: take this out, hope things dont break, fix if they do
679
682
680
683
// for demonstration purposes TODO: remove next two lines
681
684
// arrayOfTileRoots[1][1][1][0].visible = false;
You can’t perform that action at this time.
0 commit comments