imagine-curator-sdk 0.2.5 → 0.2.6
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 +1 -1
- package/src/assets/unity-build/package.json +3 -0
- package/src/config/constant/projectConstant.js +5 -5
- package/src/constants/productConfiguratorConstants.js +5 -5
- package/src/constants/textureConstants.js +5 -5
- /package/src/assets/{Build → unity-build}/LiveFurnishBuild.data +0 -0
- /package/src/assets/{Build → unity-build}/LiveFurnishBuild.framework.js +0 -0
- /package/src/assets/{Build → unity-build}/LiveFurnishBuild.loader.js +0 -0
- /package/src/assets/{Build → unity-build}/LiveFurnishBuild.wasm +0 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// Import Unity build files as
|
|
2
|
-
import loaderUrl from '../../assets/
|
|
3
|
-
import dataUrl from '../../assets/
|
|
4
|
-
import frameworkUrl from '../../assets/
|
|
5
|
-
import codeUrl from '../../assets/
|
|
1
|
+
// Import Unity build files as static assets
|
|
2
|
+
import loaderUrl from '../../assets/unity-build/LiveFurnishBuild.loader.js?url';
|
|
3
|
+
import dataUrl from '../../assets/unity-build/LiveFurnishBuild.data?url';
|
|
4
|
+
import frameworkUrl from '../../assets/unity-build/LiveFurnishBuild.framework.js?url';
|
|
5
|
+
import codeUrl from '../../assets/unity-build/LiveFurnishBuild.wasm?url';
|
|
6
6
|
|
|
7
7
|
export const UNITY_REF = {
|
|
8
8
|
loaderUrl,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { COLOR_TYPE } from '../redux/slicers/admin/curatorStylesSlicer';
|
|
2
2
|
|
|
3
|
-
// Import Unity build files as
|
|
4
|
-
import loaderUrl from '../assets/
|
|
5
|
-
import dataUrl from '../assets/
|
|
6
|
-
import frameworkUrl from '../assets/
|
|
7
|
-
import codeUrl from '../assets/
|
|
3
|
+
// Import Unity build files as static assets
|
|
4
|
+
import loaderUrl from '../assets/unity-build/LiveFurnishBuild.loader.js?url';
|
|
5
|
+
import dataUrl from '../assets/unity-build/LiveFurnishBuild.data?url';
|
|
6
|
+
import frameworkUrl from '../assets/unity-build/LiveFurnishBuild.framework.js?url';
|
|
7
|
+
import codeUrl from '../assets/unity-build/LiveFurnishBuild.wasm?url';
|
|
8
8
|
|
|
9
9
|
export const CONFIGURATOR_TYPE = {
|
|
10
10
|
IMAGE: '1',
|
|
@@ -6,11 +6,11 @@ export const MODE_EDIT = 'edit';
|
|
|
6
6
|
export const MODE_UPLOAD = 'upload';
|
|
7
7
|
export const MODE_MOVE_TO_TEXTURES = 'move-to-textures';
|
|
8
8
|
|
|
9
|
-
// Import Unity build files as
|
|
10
|
-
import loaderUrl from '../assets/
|
|
11
|
-
import dataUrl from '../assets/
|
|
12
|
-
import frameworkUrl from '../assets/
|
|
13
|
-
import codeUrl from '../assets/
|
|
9
|
+
// Import Unity build files as static assets
|
|
10
|
+
import loaderUrl from '../assets/unity-build/LiveFurnishBuild.loader.js?url';
|
|
11
|
+
import dataUrl from '../assets/unity-build/LiveFurnishBuild.data?url';
|
|
12
|
+
import frameworkUrl from '../assets/unity-build/LiveFurnishBuild.framework.js?url';
|
|
13
|
+
import codeUrl from '../assets/unity-build/LiveFurnishBuild.wasm?url';
|
|
14
14
|
|
|
15
15
|
export const UNITY_REF = {
|
|
16
16
|
loaderUrl,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|