The transform property of the XREquirectLayer interface represents the offset and orientation relative to the layer's space.
Value
Examples
Setting the equirect layer's position
This example code positions the layer two meters away from the origin of xrReferenceSpace.
const equirectLayer = xrGlBinding.createEquirectLayer({
space: xrReferenceSpace,
viewPixelWidth: 512,
viewPixelHeight: 512,
});
equirectLayer.transform = new XRRigidTransform({ z: -2 });
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
transform |
No |
No |
No |
No |
No |
No |
No |
No |
No |
No |
No |
No |
See also