File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -506,7 +506,7 @@ function Loader( editor ) {
506
506
507
507
const contents = event . target . result ;
508
508
509
- const { PCDLoader } = await import ( '../../examples/jsm /loaders/PCDLoader.js' ) ;
509
+ const { PCDLoader } = await import ( 'three/addons /loaders/PCDLoader.js' ) ;
510
510
511
511
const points = new PCDLoader ( ) . parse ( contents ) ;
512
512
points . name = filename ;
@@ -653,7 +653,7 @@ function Loader( editor ) {
653
653
654
654
const contents = event . target . result ;
655
655
656
- const { USDZLoader } = await import ( '../../examples/jsm /loaders/USDZLoader.js' ) ;
656
+ const { USDZLoader } = await import ( 'three/addons /loaders/USDZLoader.js' ) ;
657
657
658
658
const group = new USDZLoader ( ) . parse ( contents ) ;
659
659
group . name = filename ;
Original file line number Diff line number Diff line change 1
1
import { UIPanel } from './libs/ui.js' ;
2
2
3
- import { ViewHelper as ViewHelperBase } from '../../examples/jsm /helpers/ViewHelper.js' ;
3
+ import { ViewHelper as ViewHelperBase } from 'three/addons /helpers/ViewHelper.js' ;
4
4
5
5
class ViewHelper extends ViewHelperBase {
6
6
You can’t perform that action at this time.
0 commit comments