Globals are not updated when setting rotations with conversion
from pynimation.viewer.viewer import Viewer
import pynimation.common.data as data_
from pynimation.anim.animation import Animation
bvh_file = data_.getDataPath("data/animations/walk_loop.bvh")
animation = Animation.load(bvh_file)
# globals not updated after this
animation.rightKnee.rotation.eulerDeg.x = 90
Viewer().displayAnimation(animation)