XRInputSourcesChangeEvent - Web APIs 编辑
Secure context
This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The WebXR Device API interface XRInputSourcesChangeEvent
is used to represent the inputsourceschange
event sent to an XRSession
when the set of available WebXR input controllers changes.
Constructor
XRInputSourcesChangeEvent()
- Creates and returns a new
XRInputSourcesChangeEvent
object configured as indicated by the givenXRInputSourcesChangeEventInit
object. The specified type must beinputsourceschange
, which is the only event that uses this interface.
Properties
added
Read only- An array of zero or more
XRInputSource
objects, each representing an input device which has been newly connected or enabled for use. removed
Read only- An array of zero or more
XRInputSource
objects representing the input devices newly connected or enabled for use. session
Read only- The
XRSession
to which this input source change event is being directed.
Methods
While XRInputSourcesChangeEvent
defines no methods of its own, it inherits methods from its parent interface, Event
.
Event types
inputsourceschange
- Delivered to the
XRSession
when the set of input devices available to it changes.
Examples
The following example shows how to set up an event handler which uses inputsourceschange
events to detect newly-available pointing devices and to load their models in preparation to display them in the next animation frame.
xrSession.addEventListener("inputsourceschange", onInputSourcesChange);
function onInputSourcesChange(event) {
for (let input of event.added) {
if (input.targetRayMode == "tracked-pointer") {
loadControllerMesh(input);
}
}
}
You can also add a handler for inputsourceschange
events by setting the oninputsourceschange
event handler:
xrSession.oninputsourceschange = onInputSourcesChange;
Specifications
Specification | Status | Comment |
---|---|---|
WebXR Device API The definition of 'XRInputSourcesChangeEvent' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论