@needle-tools/engine 4.13.0-next.266306a → 4.13.0-next.e86f701
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/dist/materialx-CnsT47BY.umd.cjs +90 -0
- package/dist/materialx-DTdTjiOL.min.js +90 -0
- package/dist/materialx-DUlX6ZVi.js +4642 -0
- package/dist/{needle-engine.bundle-oAhD-7Fz.js → needle-engine.bundle-BQD5-mHP.js} +8 -8
- package/dist/{needle-engine.bundle-B7F6jBXq.min.js → needle-engine.bundle-BfnkeoC_.min.js} +7 -7
- package/dist/{needle-engine.bundle-DDpsDnSN.umd.cjs → needle-engine.bundle-D9gkuaKW.umd.cjs} +8 -8
- package/dist/needle-engine.js +2 -2
- package/dist/needle-engine.min.js +1 -1
- package/dist/needle-engine.umd.cjs +1 -1
- package/dist/vendor-BiyIZ61v.js +16514 -0
- package/dist/vendor-COVQl0b8.umd.cjs +1116 -0
- package/dist/vendor-DW7zqjuT.min.js +1116 -0
- package/package.json +2 -2
- package/plugins/vite/dependencies.js +9 -4
- package/dist/vendor-B2in6St_.min.js +0 -1205
- package/dist/vendor-DkOlNbVJ.js +0 -21164
- package/dist/vendor-ZQdA4Nwc.umd.cjs +0 -1205
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@needle-tools/engine",
|
|
3
|
-
"version": "4.13.0-next.
|
|
3
|
+
"version": "4.13.0-next.e86f701",
|
|
4
4
|
"description": "Needle Engine is a web-based runtime for 3D apps. It runs on your machine for development with great integrations into editors like Unity or Blender - and can be deployed onto any device! It is flexible, extensible and networking and XR are built-in.",
|
|
5
5
|
"main": "dist/needle-engine.min.js",
|
|
6
6
|
"exports": {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"dependencies": {
|
|
101
101
|
"@dimforge/rapier3d-compat": "0.19.x",
|
|
102
102
|
"@needle-tools/gltf-progressive": "3.3.5",
|
|
103
|
-
"@needle-tools/materialx": "1.
|
|
103
|
+
"@needle-tools/materialx": "1.4.0",
|
|
104
104
|
"@needle-tools/three-animation-pointer": "1.0.7",
|
|
105
105
|
"@webxr-input-profiles/motion-controllers": "^1.0.0",
|
|
106
106
|
"flatbuffers": "2.0.4",
|
|
@@ -206,15 +206,20 @@ function handleManualChunks(config) {
|
|
|
206
206
|
return "postprocessing";
|
|
207
207
|
}
|
|
208
208
|
|
|
209
|
-
if (id.includes("node_modules/three-mesh-ui")) {
|
|
210
|
-
return "three-mesh-ui";
|
|
211
|
-
}
|
|
212
|
-
|
|
213
209
|
if (id.includes("@dimforge/rapier3d")) {
|
|
214
210
|
detectSyncImports(id, meta);
|
|
215
211
|
return "rapier3d";
|
|
216
212
|
}
|
|
217
213
|
|
|
214
|
+
if (id.includes("@needle-tools/materialx")) {
|
|
215
|
+
detectSyncImports(id, meta);
|
|
216
|
+
return "materialx";
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
if (id.includes("node_modules/three-mesh-ui")) {
|
|
220
|
+
return "three-mesh-ui";
|
|
221
|
+
}
|
|
222
|
+
|
|
218
223
|
if (id.includes("node_modules/three.quarks")) {
|
|
219
224
|
return "three-quarks";
|
|
220
225
|
}
|