@playcanvas/splat-transform 0.10.0 → 0.10.2

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/index.mjs CHANGED
@@ -1890,7 +1890,7 @@ let Quat$1 = class Quat {
1890
1890
  }
1891
1891
  };
1892
1892
 
1893
- var version$1 = "0.10.0";
1893
+ var version$1 = "0.10.2";
1894
1894
 
1895
1895
  class Column {
1896
1896
  name;
@@ -2824,7 +2824,7 @@ const readKsplat = async (fileHandle) => {
2824
2824
  };
2825
2825
 
2826
2826
  const readMjs = async (filename, params) => {
2827
- const module = await import(filename);
2827
+ const module = await import(`file://${filename}`);
2828
2828
  if (!module) {
2829
2829
  throw new Error(`Failed to load module: ${filename}`);
2830
2830
  }
@@ -92912,7 +92912,7 @@ const createDevice = async () => {
92912
92912
  canvas.height = 512;
92913
92913
  const graphicsDevice = new WebgpuGraphicsDevice(canvas, {
92914
92914
  antialias: false,
92915
- depth: true,
92915
+ depth: false,
92916
92916
  stencil: false
92917
92917
  });
92918
92918
  await graphicsDevice.createDevice();