@soonspacejs/plugin-gs3d-loader 2.13.17 → 2.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soonspacejs/plugin-gs3d-loader",
3
- "version": "2.13.17",
3
+ "version": "2.14.0",
4
4
  "description": "GS3D plugin for SoonSpace.js",
5
5
  "main": "dist/index.esm.js",
6
6
  "module": "dist/index.esm.js",
@@ -12,8 +12,8 @@
12
12
  ],
13
13
  "author": "xunwei",
14
14
  "license": "UNLICENSED",
15
- "gitHead": "8afa5fda9a0ef2c080060e7d8e71a8bf168fd4d2",
15
+ "gitHead": "4c85e8b7b8ad24ccb9b42f3a1826bca377c42a6d",
16
16
  "peerDependencies": {
17
- "soonspacejs": "2.13.17"
17
+ "soonspacejs": "2.14.0"
18
18
  }
19
19
  }
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as GaussianSplats3D from '@mkkellogg/gaussian-splats-3d'
2
2
  import { ScenesOption, DropInViewer, SceneOption, LoaderStatus, } from './types'
3
3
  import { Quaternion, Vector3, } from 'three'
4
- import SoonSpace from 'soonspacejs/types/index'
4
+ import SoonSpace from 'soonspacejs'
5
5
 
6
6
  const _quat = new Quaternion().setFromAxisAngle( new Vector3( 0, 0, 1 ), Math.PI )
7
7