XRSession.onsqueezestart - Web APIs 编辑
Secure context
This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The XRSession
interface's onsqueezestart
event handler property can be set to a function which is then invoked to handle the squeezestart
event that's sent when the user successfully begins a primary squeeze action on a WebXR input device. These actions represent the user squeezing or tightly gripping an object or controller.
To learn more about how to use and handle WebXR controller inputs, see Inputs and input sources.
Syntax
xrSession.onsqueezestart = squeezestartHandlerFunction;
Value
A function to be invoked whenever the XRSession
receives a squeezestart
event.
Examples
This snippet of code adds a simple handler for the squeezestart
event, which responds only to events on the user's dominant hand by getting the target ray, then calling a function findObjectUsingRay()
to identify the object that the user is pointing at. This object is then stored in a heldObject
variable in the user
object we're using to represent user information.
xrSession.onsqueezestart = event => {
if (event.inputSource.handedness == user.handedness) {
let targetRayPose = event.frame.getPose(event.inputSource.targetRaySpace, myRefSpace;
if (targetRayPose) {
user.heldObject = findObjectUsingRay(targetRayPose.transform);
}
}
};
Specifications
Specification | Status | Comment |
---|---|---|
WebXR Device API The definition of 'XRSession.onsqueezestart' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
- Inputs and input sources
- The other
onsqueeze*
handlers:onsqueeze
andonsqueezeend
- The
squeeze
,squeezestart
, andsqueezeend
events
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论