I am trying create rotation animation that rotates the object around a specific pivotpoint. How can I achieve this using SharpGLTF?
The following piece of code does create a rotation animation, but rotates object around global origin.
Quaternion rotation;
Node node;
Vector3 pivotPoint;
node.WithRotationAnimation("rotate", (0.0f, Quaternion.Identity), 1f, rotation));