Hello team. I need guidence I want to develop a feature that allow avatar head do movement accordding to mouse position.
Did you read this Bones and Skeletons | Babylon.js Documentation ?
3 Likes
Maybe @PatrickRyan or @Evgeni_Popov has ideas.
1 Like
I think you want to use the BoneLookController
:
[…] Ah, @Alexander_Sosnovskiy already linked to it!
2 Likes
I tried on babylonjs model by modifing head bone
But im not able to do it with ready player me avatar
if i manually update the bone rotation values then it again reset even i stop all the animations.
You should update the transform node linked to the bone and not the bone itself, as the model is loaded from a glTF file: modify skeleton.bones[XXX].getTransformNode()
and not skeleton.bones[XXX]
.
1 Like