Secure context
This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The XRInputSourcesChangeEventInit
property
removed
is an array of zero or
more XRInputSource
objects, each representing one input source which
has been removed from the XRSession
.
Syntax
let inputSourcesEventInit = {
session: xrSession,
added: [newDevice1, ..., newDeviceN],
removed: [removedDevice1, ..., newDeviceN],
};
myInputSourcesChangeEvent = new XRInputSourcesChangeEventInit("inputsourceschange", inputSourcesEventInit);
myInputSourcesChangeEvent = new XRInputSourcesChangeEventInit("inputsourceschange",
{
session: xrSession,
added: addedDeviceList,
removed: removedDeviceList
});
Value
An Array
of zero or more XRInputSource
objects, each
representing one input device removed from the XR system.
Specifications
Specification | Status | Comment |
---|---|---|
WebXR Device API The definition of 'XRInputSourcesChangeEventInit.removed' in that specification. |
Working Draft | Initial definition. |