You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the Immersive Web Emulator chrome extension.
When I am calling xrFrame.getViewerPose(XRReferenceSpace);
I am getting a TypeError: XRRigidTransform is not a constructor
from this line: return new XRRigidTransform(transform.matrix);
I am using the Immersive Web Emulator chrome extension.
When I am calling
xrFrame.getViewerPose(XRReferenceSpace);
I am getting a
TypeError: XRRigidTransform is not a constructor
from this line:
return new XRRigidTransform(transform.matrix);
webxr-polyfill/build/webxr-polyfill.js
Line 1064 in 7a60906
I managed to fix this locally by replacing it with
return new XRRigidTransform$1(transform.matrix);
The text was updated successfully, but these errors were encountered: