Releases: pixiv/three-vrm
Releases Β· pixiv/three-vrm
v0.5.4
v0.5.3
v0.5.2
v0.5.1
v0.5.0
π¨ BREAKING CHANGES π¨
- #507:
VRMHumanoid
, Greatly changed the behavior ofgetPose
/setPose
- It now explicitly receives / returns local, relative transforms that is described in
VRMPose
restPose
is now explicitly NOT compatible withgetPose
/setPose
- It now explicitly receives / returns local, relative transforms that is described in
β¨ New Features
- #507:
VRMHumanoid
, New method: resetPose- It just resets the pose to its initial pose (that should be T stance)
- It's actually identical to
setPose({})
π‘ Behavior Changes
- #507: Greatly changed the behavior of
getPose
/setPose
- It now explicitly receives / returns local, relative transforms that is described in
VRMPose
restPose
is now explicitly NOT compatible withgetPose
/setPose
- It now explicitly receives / returns local, relative transforms that is described in
v0.4.3
v0.4.2
v0.4.1
v0.4.0
π¨ BREAKING CHANGES π¨
- #478: "Center" feature is now functional as UniVRM
- If you need the previous behavior, call
vrm.springBoneManager.setCenter(null)
after you import VRMs
- If you need the previous behavior, call
- #481: The interface of
new VRMSpringBone
has changed- Beware if you are extending
VRMSpringBone
orVRMSpringBoneImporter
- Beware if you are extending
- #482:
vrm.meta.texture
is nowTHREE.Texture
instead of id of the texture in glTF - #482: Importing a VRM from a glTF now loads a thumbnail texture by default!
- Which may cause you unnecessary memory consumption
- Set
VRMMetaImporter.ignoreTexture = true
to disable this behavior
β¨ New Features
- #478: "Center" feature is now functional as UniVRM
VRMSpringBone.center
is the public propertyVRMSpringBoneManager.setCenter(object)
sets center to all managed spring bone
- #482, #485, #486: Now you can extract thumbnail as a Blob using
VRMUtils.extractThumbnailBlob(renderer, vrm, resolution)
- See the
meta.html
example
- See the
π‘ Behavior Changes
- #481: The interface of
new VRMSpringBone
has changed - #481: Most of members of
VRMSpringBone
are now mutable - #482:
vrm.meta
is now an interfaceVRMMeta
instead ofVRMSchema.Meta
VRMMeta.texture
is aTHREE.Texture
π» Refactors
- Trivial: #483