@pixiv/three-vrm-core 1.0.0-beta.1 → 1.0.0-beta.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 +6 -0
- package/lib/three-vrm-core.js +2578 -2203
- package/lib/three-vrm-core.min.js +3 -3
- package/lib/three-vrm-core.module.js +2575 -2203
- 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/ts3.4/types/expressions/{VRMExpressionPreset.d.ts → 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 +64 -79
- package/types/expressions/VRMExpressionBind.d.ts +11 -0
- package/types/expressions/VRMExpressionLoaderPlugin.d.ts +23 -23
- package/types/expressions/VRMExpressionManager.d.ts +124 -112
- package/types/expressions/VRMExpressionMaterialColorBind.d.ts +42 -19
- package/types/expressions/VRMExpressionMaterialColorType.d.ts +8 -8
- package/types/expressions/VRMExpressionMorphTargetBind.d.ts +35 -18
- package/types/expressions/VRMExpressionOverrideType.d.ts +6 -6
- package/types/expressions/{VRMExpressionPreset.d.ts → VRMExpressionPresetName.d.ts} +21 -21
- package/types/expressions/VRMExpressionTextureTransformBind.d.ts +40 -18
- package/types/expressions/index.d.ts +10 -11
- package/types/firstPerson/VRMFirstPerson.d.ts +84 -84
- package/types/firstPerson/VRMFirstPersonLoaderPlugin.d.ts +20 -29
- package/types/firstPerson/VRMFirstPersonMeshAnnotation.d.ts +5 -5
- package/types/firstPerson/VRMFirstPersonMeshAnnotationType.d.ts +7 -7
- package/types/firstPerson/index.d.ts +4 -4
- package/types/humanoid/VRMHumanBone.d.ts +10 -10
- package/types/humanoid/VRMHumanBoneName.d.ts +58 -58
- package/types/humanoid/VRMHumanBones.d.ts +11 -11
- package/types/humanoid/VRMHumanoid.d.ts +73 -73
- package/types/humanoid/VRMHumanoidLoaderPlugin.d.ts +24 -24
- package/types/humanoid/VRMPose.d.ts +24 -24
- package/types/humanoid/VRMPoseTransform.d.ts +15 -15
- package/types/humanoid/VRMRequiredHumanBoneName.d.ts +18 -18
- package/types/humanoid/index.d.ts +8 -8
- package/types/index.d.ts +9 -5
- package/types/lookAt/VRMLookAt.d.ts +104 -93
- package/types/lookAt/VRMLookAtApplier.d.ts +12 -12
- package/types/lookAt/VRMLookAtBoneApplier.d.ts +50 -50
- package/types/lookAt/VRMLookAtExpressionApplier.d.ts +51 -51
- package/types/lookAt/VRMLookAtLoaderPlugin.d.ts +30 -40
- package/types/lookAt/VRMLookAtLoaderPluginOptions.d.ts +8 -0
- package/types/lookAt/VRMLookAtRangeMap.d.ts +23 -23
- package/types/lookAt/VRMLookAtTypeName.d.ts +8 -8
- 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 +8 -7
- package/types/meta/VRM0Meta.d.ts +62 -62
- package/types/meta/VRM1Meta.d.ts +86 -86
- package/types/meta/VRMMeta.d.ts +6 -6
- package/types/meta/VRMMetaLoaderPlugin.d.ts +32 -32
- package/types/meta/VRMMetaLoaderPluginOptions.d.ts +22 -22
- package/types/meta/index.d.ts +5 -5
- package/types/utils/getWorldQuaternionLite.d.ts +8 -8
- package/types/utils/gltfExtractPrimitivesFromNode.d.ts +21 -21
- package/types/utils/gltfGetAssociatedMaterialIndex.d.ts +10 -0
- package/types/utils/quatInvertCompat.d.ts +8 -8
- package/types/utils/resolveURL.d.ts +4 -4
- package/types/utils/saturate.d.ts +6 -6
- 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)
|