@react-three/viverse 0.1.11 → 0.1.12

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/README.md CHANGED
@@ -67,7 +67,7 @@ Get started with **[building a simple game](https://pmndrs.github.io/viverse/tut
67
67
 
68
68
  > No Problem
69
69
 
70
- Check out how to build games using @pmndrs/viverse and only [vanilla three.js](https://pmndrs.github.io/viverse/without-react).
70
+ Check out how to build games using @pmndrs/viverse and only [vanilla three.js](https://pmndrs.github.io/viverse/without-react/introduction).
71
71
 
72
72
  ## Acknowledgments
73
73
 
package/dist/character.js CHANGED
@@ -101,7 +101,7 @@ export const FixedBvhPhysicsBody = forwardRef(({ children }, ref) => {
101
101
  if (body == null) {
102
102
  return;
103
103
  }
104
- world.addFixedBody(body);
104
+ world.addBody(body, false);
105
105
  return () => world.removeFixedBody(body);
106
106
  }, [world]);
107
107
  useImperativeHandle(ref, () => internalRef.current, []);
package/package.json CHANGED
@@ -28,7 +28,7 @@
28
28
  "@pixiv/three-vrm": "^3.4.2",
29
29
  "zustand": "^5.0.6",
30
30
  "@react-three/xr": "^6.6.20",
31
- "@pmndrs/viverse": "^0.1.11"
31
+ "@pmndrs/viverse": "^0.1.12"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@react-three/fiber": "*"
@@ -39,7 +39,7 @@
39
39
  "@types/react": "^19.1.8",
40
40
  "react": "^19.1.0"
41
41
  },
42
- "version": "0.1.11",
42
+ "version": "0.1.12",
43
43
  "scripts": {
44
44
  "build": "tsc",
45
45
  "check:prettier": "prettier --check src",