@pixiv/three-vrm-core 1.0.0-beta.9 → 1.0.0

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 (108) hide show
  1. package/lib/three-vrm-core.js +3367 -2551
  2. package/lib/three-vrm-core.min.js +2 -2
  3. package/lib/three-vrm-core.module.js +3365 -2552
  4. package/lib/three-vrm-core.module.min.js +2 -2
  5. package/package.json +12 -12
  6. package/ts3.4/types/VRMCore.d.ts +7 -7
  7. package/ts3.4/types/VRMCoreLoaderPluginOptions.d.ts +1 -0
  8. package/ts3.4/types/VRMCoreParameters.d.ts +2 -2
  9. package/ts3.4/types/expressions/VRMExpression.d.ts +1 -1
  10. package/ts3.4/types/expressions/VRMExpressionMaterialColorBind.d.ts +3 -0
  11. package/ts3.4/types/expressions/VRMExpressionMaterialColorType.d.ts +4 -0
  12. package/ts3.4/types/humanoid/VRMHumanBoneList.d.ts +5 -0
  13. package/ts3.4/types/humanoid/VRMHumanBoneName.d.ts +7 -2
  14. package/ts3.4/types/humanoid/VRMHumanBoneParentMap.d.ts +9 -0
  15. package/ts3.4/types/humanoid/VRMHumanoid.d.ts +130 -21
  16. package/ts3.4/types/humanoid/VRMHumanoidLoaderPlugin.d.ts +9 -1
  17. package/ts3.4/types/humanoid/VRMHumanoidLoaderPluginOptions.d.ts +15 -0
  18. package/ts3.4/types/humanoid/VRMHumanoidRig.d.ts +31 -0
  19. package/ts3.4/types/humanoid/VRMRig.d.ts +62 -0
  20. package/ts3.4/types/humanoid/helpers/VRMHumanoidHelper.d.ts +9 -0
  21. package/ts3.4/types/humanoid/helpers/index.d.ts +1 -0
  22. package/ts3.4/types/humanoid/index.d.ts +4 -0
  23. package/ts3.4/types/lookAt/VRMLookAt.d.ts +48 -6
  24. package/ts3.4/types/lookAt/VRMLookAtApplier.d.ts +8 -2
  25. package/ts3.4/types/lookAt/VRMLookAtBoneApplier.d.ts +35 -2
  26. package/ts3.4/types/lookAt/VRMLookAtExpressionApplier.d.ts +7 -2
  27. package/ts3.4/types/lookAt/tests/VRMLookAt.test.d.ts +1 -0
  28. package/ts3.4/types/lookAt/tests/VRMLookAtBoneApplier.test.d.ts +1 -0
  29. package/ts3.4/types/lookAt/utils/calcAzimuthAltitude.d.ts +16 -0
  30. package/ts3.4/types/lookAt/utils/sanitizeAngle.d.ts +11 -0
  31. package/ts3.4/types/lookAt/utils/tests/calcAzimuthAltitude.test.d.ts +1 -0
  32. package/ts3.4/types/lookAt/utils/tests/sanitizeAngle.test.d.ts +1 -0
  33. package/ts3.4/types/meta/VRMMetaLoaderPlugin.d.ts +1 -1
  34. package/ts3.4/types/meta/VRMMetaLoaderPluginOptions.d.ts +1 -1
  35. package/ts3.4/types/tests/matchers/toBeCloseToQuaternion.d.ts +10 -0
  36. package/ts3.4/types/tests/matchers/toBeCloseToVector3.d.ts +10 -0
  37. package/ts3.4/types/utils/renameMaterialProperty.d.ts +1 -0
  38. package/types/VRMCore.d.ts +58 -58
  39. package/types/VRMCoreLoaderPlugin.d.ts +18 -18
  40. package/types/VRMCoreLoaderPluginOptions.d.ts +19 -18
  41. package/types/VRMCoreParameters.d.ts +16 -16
  42. package/types/expressions/VRMExpression.d.ts +64 -64
  43. package/types/expressions/VRMExpressionBind.d.ts +11 -11
  44. package/types/expressions/VRMExpressionLoaderPlugin.d.ts +23 -23
  45. package/types/expressions/VRMExpressionManager.d.ts +124 -124
  46. package/types/expressions/VRMExpressionMaterialColorBind.d.ts +45 -42
  47. package/types/expressions/VRMExpressionMaterialColorType.d.ts +12 -8
  48. package/types/expressions/VRMExpressionMorphTargetBind.d.ts +35 -35
  49. package/types/expressions/VRMExpressionOverrideType.d.ts +6 -6
  50. package/types/expressions/VRMExpressionPresetName.d.ts +21 -21
  51. package/types/expressions/VRMExpressionTextureTransformBind.d.ts +40 -40
  52. package/types/expressions/index.d.ts +10 -10
  53. package/types/firstPerson/VRMFirstPerson.d.ts +84 -84
  54. package/types/firstPerson/VRMFirstPersonLoaderPlugin.d.ts +20 -20
  55. package/types/firstPerson/VRMFirstPersonMeshAnnotation.d.ts +5 -5
  56. package/types/firstPerson/VRMFirstPersonMeshAnnotationType.d.ts +7 -7
  57. package/types/firstPerson/index.d.ts +4 -4
  58. package/types/humanoid/VRMHumanBone.d.ts +10 -10
  59. package/types/humanoid/VRMHumanBoneList.d.ts +5 -0
  60. package/types/humanoid/VRMHumanBoneName.d.ts +63 -58
  61. package/types/humanoid/VRMHumanBoneParentMap.d.ts +9 -0
  62. package/types/humanoid/VRMHumanBones.d.ts +11 -11
  63. package/types/humanoid/VRMHumanoid.d.ts +182 -73
  64. package/types/humanoid/VRMHumanoidLoaderPlugin.d.ts +32 -24
  65. package/types/humanoid/VRMHumanoidLoaderPluginOptions.d.ts +15 -0
  66. package/types/humanoid/VRMHumanoidRig.d.ts +31 -0
  67. package/types/humanoid/VRMPose.d.ts +24 -24
  68. package/types/humanoid/VRMPoseTransform.d.ts +15 -15
  69. package/types/humanoid/VRMRequiredHumanBoneName.d.ts +18 -18
  70. package/types/humanoid/VRMRig.d.ts +62 -0
  71. package/types/humanoid/helpers/VRMHumanoidHelper.d.ts +9 -0
  72. package/types/humanoid/helpers/index.d.ts +1 -0
  73. package/types/humanoid/index.d.ts +12 -8
  74. package/types/index.d.ts +9 -9
  75. package/types/lookAt/VRMLookAt.d.ts +148 -104
  76. package/types/lookAt/VRMLookAtApplier.d.ts +18 -12
  77. package/types/lookAt/VRMLookAtBoneApplier.d.ts +83 -50
  78. package/types/lookAt/VRMLookAtExpressionApplier.d.ts +56 -51
  79. package/types/lookAt/VRMLookAtLoaderPlugin.d.ts +30 -30
  80. package/types/lookAt/VRMLookAtLoaderPluginOptions.d.ts +8 -8
  81. package/types/lookAt/VRMLookAtRangeMap.d.ts +23 -23
  82. package/types/lookAt/VRMLookAtTypeName.d.ts +8 -8
  83. package/types/lookAt/helpers/VRMLookAtHelper.d.ts +11 -11
  84. package/types/lookAt/helpers/index.d.ts +1 -1
  85. package/types/lookAt/helpers/utils/FanBufferGeometry.d.ts +13 -13
  86. package/types/lookAt/helpers/utils/LineAndSphereBufferGeometry.d.ts +13 -13
  87. package/types/lookAt/index.d.ts +8 -8
  88. package/types/lookAt/tests/VRMLookAt.test.d.ts +1 -0
  89. package/types/lookAt/tests/VRMLookAtBoneApplier.test.d.ts +1 -0
  90. package/types/lookAt/utils/calcAzimuthAltitude.d.ts +13 -0
  91. package/types/lookAt/utils/sanitizeAngle.d.ts +11 -0
  92. package/types/lookAt/utils/tests/calcAzimuthAltitude.test.d.ts +1 -0
  93. package/types/lookAt/utils/tests/sanitizeAngle.test.d.ts +1 -0
  94. package/types/meta/VRM0Meta.d.ts +62 -62
  95. package/types/meta/VRM1Meta.d.ts +86 -86
  96. package/types/meta/VRMMeta.d.ts +6 -6
  97. package/types/meta/VRMMetaLoaderPlugin.d.ts +32 -32
  98. package/types/meta/VRMMetaLoaderPluginOptions.d.ts +22 -22
  99. package/types/meta/index.d.ts +5 -5
  100. package/types/tests/matchers/toBeCloseToQuaternion.d.ts +10 -0
  101. package/types/tests/matchers/toBeCloseToVector3.d.ts +10 -0
  102. package/types/utils/getWorldQuaternionLite.d.ts +8 -8
  103. package/types/utils/gltfExtractPrimitivesFromNode.d.ts +21 -21
  104. package/types/utils/gltfGetAssociatedMaterialIndex.d.ts +10 -10
  105. package/types/utils/quatInvertCompat.d.ts +8 -8
  106. package/types/utils/renameMaterialProperty.d.ts +1 -0
  107. package/types/utils/resolveURL.d.ts +4 -4
  108. package/types/utils/saturate.d.ts +6 -6

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.