W3cubDocs

/Web APIs

XREquirectLayer: transform property

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

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.

js

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

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XREquirectLayer/transform