@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.
Files changed (92) hide show
  1. package/README.md +6 -0
  2. package/lib/three-vrm-core.js +2578 -2203
  3. package/lib/three-vrm-core.min.js +3 -3
  4. package/lib/three-vrm-core.module.js +2575 -2203
  5. package/lib/three-vrm-core.module.min.js +3 -3
  6. package/package.json +12 -12
  7. package/ts3.4/types/VRMCore.d.ts +58 -0
  8. package/ts3.4/types/VRMCoreLoaderPlugin.d.ts +18 -0
  9. package/ts3.4/types/VRMCoreLoaderPluginOptions.d.ts +18 -0
  10. package/ts3.4/types/VRMCoreParameters.d.ts +16 -0
  11. package/ts3.4/types/expressions/VRMExpression.d.ts +3 -18
  12. package/ts3.4/types/expressions/VRMExpressionBind.d.ts +11 -0
  13. package/ts3.4/types/expressions/VRMExpressionLoaderPlugin.d.ts +3 -3
  14. package/ts3.4/types/expressions/VRMExpressionManager.d.ts +17 -5
  15. package/ts3.4/types/expressions/VRMExpressionMaterialColorBind.d.ts +27 -4
  16. package/ts3.4/types/expressions/VRMExpressionMorphTargetBind.d.ts +22 -5
  17. package/ts3.4/types/expressions/{VRMExpressionPreset.d.ts → VRMExpressionPresetName.d.ts} +2 -2
  18. package/ts3.4/types/expressions/VRMExpressionTextureTransformBind.d.ts +26 -4
  19. package/ts3.4/types/expressions/index.d.ts +2 -3
  20. package/ts3.4/types/firstPerson/VRMFirstPersonLoaderPlugin.d.ts +1 -10
  21. package/ts3.4/types/humanoid/VRMHumanoidLoaderPlugin.d.ts +1 -1
  22. package/ts3.4/types/index.d.ts +4 -0
  23. package/ts3.4/types/lookAt/VRMLookAt.d.ts +12 -1
  24. package/ts3.4/types/lookAt/VRMLookAtLoaderPlugin.d.ts +10 -20
  25. package/ts3.4/types/lookAt/VRMLookAtLoaderPluginOptions.d.ts +8 -0
  26. package/ts3.4/types/lookAt/helpers/VRMLookAtHelper.d.ts +11 -0
  27. package/ts3.4/types/lookAt/helpers/index.d.ts +1 -0
  28. package/ts3.4/types/lookAt/helpers/utils/FanBufferGeometry.d.ts +13 -0
  29. package/ts3.4/types/lookAt/helpers/utils/LineAndSphereBufferGeometry.d.ts +13 -0
  30. package/ts3.4/types/lookAt/index.d.ts +1 -0
  31. package/ts3.4/types/meta/VRMMetaLoaderPlugin.d.ts +1 -1
  32. package/ts3.4/types/utils/gltfExtractPrimitivesFromNode.d.ts +1 -1
  33. package/ts3.4/types/utils/gltfGetAssociatedMaterialIndex.d.ts +10 -0
  34. package/types/VRMCore.d.ts +58 -0
  35. package/types/VRMCoreLoaderPlugin.d.ts +18 -0
  36. package/types/VRMCoreLoaderPluginOptions.d.ts +18 -0
  37. package/types/VRMCoreParameters.d.ts +16 -0
  38. package/types/expressions/VRMExpression.d.ts +64 -79
  39. package/types/expressions/VRMExpressionBind.d.ts +11 -0
  40. package/types/expressions/VRMExpressionLoaderPlugin.d.ts +23 -23
  41. package/types/expressions/VRMExpressionManager.d.ts +124 -112
  42. package/types/expressions/VRMExpressionMaterialColorBind.d.ts +42 -19
  43. package/types/expressions/VRMExpressionMaterialColorType.d.ts +8 -8
  44. package/types/expressions/VRMExpressionMorphTargetBind.d.ts +35 -18
  45. package/types/expressions/VRMExpressionOverrideType.d.ts +6 -6
  46. package/types/expressions/{VRMExpressionPreset.d.ts → VRMExpressionPresetName.d.ts} +21 -21
  47. package/types/expressions/VRMExpressionTextureTransformBind.d.ts +40 -18
  48. package/types/expressions/index.d.ts +10 -11
  49. package/types/firstPerson/VRMFirstPerson.d.ts +84 -84
  50. package/types/firstPerson/VRMFirstPersonLoaderPlugin.d.ts +20 -29
  51. package/types/firstPerson/VRMFirstPersonMeshAnnotation.d.ts +5 -5
  52. package/types/firstPerson/VRMFirstPersonMeshAnnotationType.d.ts +7 -7
  53. package/types/firstPerson/index.d.ts +4 -4
  54. package/types/humanoid/VRMHumanBone.d.ts +10 -10
  55. package/types/humanoid/VRMHumanBoneName.d.ts +58 -58
  56. package/types/humanoid/VRMHumanBones.d.ts +11 -11
  57. package/types/humanoid/VRMHumanoid.d.ts +73 -73
  58. package/types/humanoid/VRMHumanoidLoaderPlugin.d.ts +24 -24
  59. package/types/humanoid/VRMPose.d.ts +24 -24
  60. package/types/humanoid/VRMPoseTransform.d.ts +15 -15
  61. package/types/humanoid/VRMRequiredHumanBoneName.d.ts +18 -18
  62. package/types/humanoid/index.d.ts +8 -8
  63. package/types/index.d.ts +9 -5
  64. package/types/lookAt/VRMLookAt.d.ts +104 -93
  65. package/types/lookAt/VRMLookAtApplier.d.ts +12 -12
  66. package/types/lookAt/VRMLookAtBoneApplier.d.ts +50 -50
  67. package/types/lookAt/VRMLookAtExpressionApplier.d.ts +51 -51
  68. package/types/lookAt/VRMLookAtLoaderPlugin.d.ts +30 -40
  69. package/types/lookAt/VRMLookAtLoaderPluginOptions.d.ts +8 -0
  70. package/types/lookAt/VRMLookAtRangeMap.d.ts +23 -23
  71. package/types/lookAt/VRMLookAtTypeName.d.ts +8 -8
  72. package/types/lookAt/helpers/VRMLookAtHelper.d.ts +11 -0
  73. package/types/lookAt/helpers/index.d.ts +1 -0
  74. package/types/lookAt/helpers/utils/FanBufferGeometry.d.ts +13 -0
  75. package/types/lookAt/helpers/utils/LineAndSphereBufferGeometry.d.ts +13 -0
  76. package/types/lookAt/index.d.ts +8 -7
  77. package/types/meta/VRM0Meta.d.ts +62 -62
  78. package/types/meta/VRM1Meta.d.ts +86 -86
  79. package/types/meta/VRMMeta.d.ts +6 -6
  80. package/types/meta/VRMMetaLoaderPlugin.d.ts +32 -32
  81. package/types/meta/VRMMetaLoaderPluginOptions.d.ts +22 -22
  82. package/types/meta/index.d.ts +5 -5
  83. package/types/utils/getWorldQuaternionLite.d.ts +8 -8
  84. package/types/utils/gltfExtractPrimitivesFromNode.d.ts +21 -21
  85. package/types/utils/gltfGetAssociatedMaterialIndex.d.ts +10 -0
  86. package/types/utils/quatInvertCompat.d.ts +8 -8
  87. package/types/utils/resolveURL.d.ts +4 -4
  88. package/types/utils/saturate.d.ts +6 -6
  89. package/ts3.4/types/expressions/VRMExpressionMaterialColorBindState.d.ts +0 -9
  90. package/ts3.4/types/expressions/VRMExpressionTextureTransformBindState.d.ts +0 -16
  91. package/types/expressions/VRMExpressionMaterialColorBindState.d.ts +0 -9
  92. 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)