web api instance property
XREquirectLayer: transform property
Limited availability
The transform property of the XREquirectLayer interface represents the offset and orientation relative to the layer’s space.
Value
An XRRigidTransform.
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
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.