@pmndrs/viverse 0.1.4 → 0.1.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/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<h1 align="center">@pmndrs/viverse</h1>
|
|
2
|
-
<h3 align="center">
|
|
2
|
+
<h3 align="center">Toolkit for building Three.js Apps for Viverse and beyond.</h3>
|
|
3
3
|
<br/>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
@@ -26,7 +26,7 @@ npm install three @react-three/fiber @react-three/viverse
|
|
|
26
26
|
| A prototype map with the `SimpleCharacter` class and its default model. |  |
|
|
27
27
|
| --------------------------------------------------------------------------- | --------------------------------------------------------------------- |
|
|
28
28
|
|
|
29
|
-
```
|
|
29
|
+
```tsx
|
|
30
30
|
const world = new BvhPhysicsWorld()
|
|
31
31
|
world.addFixedBody(ground.scene)
|
|
32
32
|
const character = new SimpleCharacter(camera, world, canvas, { model: { url: profile.activeAvatar?.vrmUrl } })
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pmndrs/viverse",
|
|
3
|
-
"description": "Toolkit for building
|
|
3
|
+
"description": "Toolkit for building Three.js Apps for Viverse and beyond.",
|
|
4
4
|
"author": "Bela Bohlender",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"homepage": "https://github.com/pmndrs/viverse",
|
|
@@ -21,19 +21,19 @@
|
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"three": "*"
|
|
23
23
|
},
|
|
24
|
-
"version": "0.1.
|
|
24
|
+
"version": "0.1.6",
|
|
25
25
|
"type": "module",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@pixiv/three-vrm": "^3.4.2",
|
|
28
28
|
"@pixiv/three-vrm-animation": "^3.4.2",
|
|
29
29
|
"@pmndrs/timeline": "^0.1.10",
|
|
30
30
|
"@viverse/sdk": "1.2.10-alpha.0",
|
|
31
|
-
"three": "*",
|
|
32
31
|
"three-mesh-bvh": "^0.9.1"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
34
|
"ts-node": "^10.9.2",
|
|
36
|
-
"@types/node": "^24.0.14"
|
|
35
|
+
"@types/node": "^24.0.14",
|
|
36
|
+
"three": "*"
|
|
37
37
|
},
|
|
38
38
|
"main": "dist/index.js",
|
|
39
39
|
"scripts": {
|