The transform
property of the XRCylinderLayer
interface represents the offset and orientation relative to the layer's space
.
Value
Examples
Setting the cylinder layer's position
This example code positions the layer two meters away from the origin of xrReferenceSpace
.
const cylinderLayer = xrGlBinding.createCylinderLayer({
space: xrReferenceSpace,
viewPixelWidth: 512,
viewPixelHeight: 512,
});
cylinderLayer.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