@pixiv/three-vrm-core 1.0.0-beta.1 → 1.0.0-beta.10
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 +6 -0
- package/lib/three-vrm-core.js +753 -378
- package/lib/three-vrm-core.min.js +3 -3
- package/lib/three-vrm-core.module.js +750 -378
- package/lib/three-vrm-core.module.min.js +3 -3
- package/package.json +12 -12
- package/ts3.4/types/VRMCore.d.ts +58 -0
- package/ts3.4/types/VRMCoreLoaderPlugin.d.ts +18 -0
- package/ts3.4/types/VRMCoreLoaderPluginOptions.d.ts +18 -0
- package/ts3.4/types/VRMCoreParameters.d.ts +16 -0
- package/ts3.4/types/expressions/VRMExpression.d.ts +3 -18
- package/ts3.4/types/expressions/VRMExpressionBind.d.ts +11 -0
- package/ts3.4/types/expressions/VRMExpressionLoaderPlugin.d.ts +3 -3
- package/ts3.4/types/expressions/VRMExpressionManager.d.ts +17 -5
- package/ts3.4/types/expressions/VRMExpressionMaterialColorBind.d.ts +27 -4
- package/ts3.4/types/expressions/VRMExpressionMorphTargetBind.d.ts +22 -5
- package/{types/expressions/VRMExpressionPreset.d.ts → ts3.4/types/expressions/VRMExpressionPresetName.d.ts} +2 -2
- package/ts3.4/types/expressions/VRMExpressionTextureTransformBind.d.ts +26 -4
- package/ts3.4/types/expressions/index.d.ts +2 -3
- package/ts3.4/types/firstPerson/VRMFirstPersonLoaderPlugin.d.ts +1 -10
- package/ts3.4/types/humanoid/VRMHumanoidLoaderPlugin.d.ts +1 -1
- package/ts3.4/types/index.d.ts +4 -0
- package/ts3.4/types/lookAt/VRMLookAt.d.ts +12 -1
- package/ts3.4/types/lookAt/VRMLookAtLoaderPlugin.d.ts +10 -20
- package/ts3.4/types/lookAt/VRMLookAtLoaderPluginOptions.d.ts +8 -0
- package/ts3.4/types/lookAt/helpers/VRMLookAtHelper.d.ts +11 -0
- package/ts3.4/types/lookAt/helpers/index.d.ts +1 -0
- package/ts3.4/types/lookAt/helpers/utils/FanBufferGeometry.d.ts +13 -0
- package/ts3.4/types/lookAt/helpers/utils/LineAndSphereBufferGeometry.d.ts +13 -0
- package/ts3.4/types/lookAt/index.d.ts +1 -0
- package/ts3.4/types/meta/VRMMetaLoaderPlugin.d.ts +1 -1
- package/ts3.4/types/utils/gltfExtractPrimitivesFromNode.d.ts +1 -1
- package/ts3.4/types/utils/gltfGetAssociatedMaterialIndex.d.ts +10 -0
- package/types/VRMCore.d.ts +58 -0
- package/types/VRMCoreLoaderPlugin.d.ts +18 -0
- package/types/VRMCoreLoaderPluginOptions.d.ts +18 -0
- package/types/VRMCoreParameters.d.ts +16 -0
- package/types/expressions/VRMExpression.d.ts +3 -18
- package/types/expressions/VRMExpressionBind.d.ts +11 -0
- package/types/expressions/VRMExpressionLoaderPlugin.d.ts +3 -3
- package/types/expressions/VRMExpressionManager.d.ts +17 -5
- package/types/expressions/VRMExpressionMaterialColorBind.d.ts +28 -5
- package/types/expressions/VRMExpressionMorphTargetBind.d.ts +22 -5
- package/{ts3.4/types/expressions/VRMExpressionPreset.d.ts → types/expressions/VRMExpressionPresetName.d.ts} +2 -2
- package/types/expressions/VRMExpressionTextureTransformBind.d.ts +27 -5
- package/types/expressions/index.d.ts +2 -3
- package/types/firstPerson/VRMFirstPersonLoaderPlugin.d.ts +1 -10
- package/types/humanoid/VRMHumanoidLoaderPlugin.d.ts +1 -1
- package/types/index.d.ts +4 -0
- package/types/lookAt/VRMLookAt.d.ts +12 -1
- package/types/lookAt/VRMLookAtLoaderPlugin.d.ts +10 -20
- package/types/lookAt/VRMLookAtLoaderPluginOptions.d.ts +8 -0
- package/types/lookAt/helpers/VRMLookAtHelper.d.ts +11 -0
- package/types/lookAt/helpers/index.d.ts +1 -0
- package/types/lookAt/helpers/utils/FanBufferGeometry.d.ts +13 -0
- package/types/lookAt/helpers/utils/LineAndSphereBufferGeometry.d.ts +13 -0
- package/types/lookAt/index.d.ts +1 -0
- package/types/meta/VRMMetaLoaderPlugin.d.ts +1 -1
- package/types/utils/gltfExtractPrimitivesFromNode.d.ts +1 -1
- package/types/utils/gltfGetAssociatedMaterialIndex.d.ts +10 -0
- package/ts3.4/types/expressions/VRMExpressionMaterialColorBindState.d.ts +0 -9
- package/ts3.4/types/expressions/VRMExpressionTextureTransformBindState.d.ts +0 -16
- package/types/expressions/VRMExpressionMaterialColorBindState.d.ts +0 -9
- package/types/expressions/VRMExpressionTextureTransformBindState.d.ts +0 -16
package/README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
# @pixiv/three-vrm-core
|
|
2
2
|
|
|
3
3
|
The implementation of core features of VRM, for @pixiv/three-vrm
|
|
4
|
+
|
|
5
|
+
[GitHub Repository](https://github.com/pixiv/three-vrm/tree/dev/packages/three-vrm-core)
|
|
6
|
+
|
|
7
|
+
[Examples](https://pixiv.github.io/three-vrm/packages/three-vrm-core/examples)
|
|
8
|
+
|
|
9
|
+
[Documentation](https://pixiv.github.io/three-vrm/packages/three-vrm-core/docs)
|