@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@needle-tools/engine",
3
- "version": "4.13.0-next.266306a",
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.3.x",
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
  }