Interface IAnimationRetarget

interface IAnimationRetarget {
    getEntity(): ISceneGraphEntity;
    retargetQuaternion(dstEntity: ISceneGraphEntity): IQuaternion;
    retargetScale(dstEntity: ISceneGraphEntity): IVector3;
    retargetTranslate(dstEntity: ISceneGraphEntity): IVector3;
}

Implemented by

Methods