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