@pixiv/three-vrm 1.0.0-beta.19-alpha.0 → 1.0.0-beta.19

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": "@pixiv/three-vrm",
3
- "version": "1.0.0-beta.19-alpha.0",
3
+ "version": "1.0.0-beta.19",
4
4
  "description": "VRM file loader for three.js.",
5
5
  "license": "MIT",
6
6
  "author": "pixiv",
@@ -45,12 +45,12 @@
45
45
  ]
46
46
  },
47
47
  "dependencies": {
48
- "@pixiv/three-vrm-core": "1.0.0-beta.19-alpha.0",
49
- "@pixiv/three-vrm-materials-hdr-emissive-multiplier": "1.0.0-beta.19-alpha.0",
50
- "@pixiv/three-vrm-materials-mtoon": "1.0.0-beta.19-alpha.0",
51
- "@pixiv/three-vrm-materials-v0compat": "1.0.0-beta.19-alpha.0",
52
- "@pixiv/three-vrm-node-constraint": "1.0.0-beta.19-alpha.0",
53
- "@pixiv/three-vrm-springbone": "1.0.0-beta.19-alpha.0"
48
+ "@pixiv/three-vrm-core": "1.0.0-beta.19",
49
+ "@pixiv/three-vrm-materials-hdr-emissive-multiplier": "1.0.0-beta.19",
50
+ "@pixiv/three-vrm-materials-mtoon": "1.0.0-beta.19",
51
+ "@pixiv/three-vrm-materials-v0compat": "1.0.0-beta.19",
52
+ "@pixiv/three-vrm-node-constraint": "1.0.0-beta.19",
53
+ "@pixiv/three-vrm-springbone": "1.0.0-beta.19"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@rollup/plugin-node-resolve": "^13.0.0",
@@ -62,5 +62,5 @@
62
62
  "@types/three": "^0.140.0",
63
63
  "three": "^0.140.2"
64
64
  },
65
- "gitHead": "ca8af58cdc97b3cff53e7e7523cf15d81744080c"
65
+ "gitHead": "10cce5a50c66ed95fd4ba8773865d3118cb35382"
66
66
  }
@@ -22,4 +22,11 @@ export interface VRMLoaderPluginOptions {
22
22
  * Will be overwritten if you use custom loader plugins for each components.
23
23
  */
24
24
  helperRoot?: THREE.Object3D;
25
+ /**
26
+ * Whether it copies pose from normalizedHumanBones to rawHumanBones on {@link update}.
27
+ * `true` by default.
28
+ *
29
+ * @default true
30
+ */
31
+ autoUpdateHumanBones?: boolean;
25
32
  }
@@ -22,4 +22,11 @@ export interface VRMLoaderPluginOptions {
22
22
  * Will be overwritten if you use custom loader plugins for each components.
23
23
  */
24
24
  helperRoot?: THREE.Object3D;
25
+ /**
26
+ * Whether it copies pose from normalizedHumanBones to rawHumanBones on {@link update}.
27
+ * `true` by default.
28
+ *
29
+ * @default true
30
+ */
31
+ autoUpdateHumanBones?: boolean;
25
32
  }