XRSystem
接口的
requestSession()
方法返回
promise
which resolves to an
XRSession
object through which you can manage the requested type of WebXR session.
While only one immersive VR session can be active at a time, multiple inline sessions can be in progress at once.
var sessionPromise = xr.requestSession(sessionMode, sessionInit)
sessionMode
A
DOMString
whose value is one of those included in the
XRSessionMode
enum
. The supported modes are:
immersive-ar
The session's output will be given exclusive access to the immersive device, but the rendered content will be blended with the real-world environment. The session's
environmentBlendMode
indicates the method to be used to blend the content together.
重要:
immersive-ar
mode is defined by the WebXR Augmented Reality Module, which is not yet stable and should not be used other than for testing and experimentation.
immersive-vr
environmentBlendMode
is expected to be
opaque
if possible, but might be
additive
if the hardware requires it.
inline
sessionInit
可选
XRSessionInit
object providing options to configure the new
XRSession
。见
Specifying session options
for details on how to configure a WebXR session.
A
Promise
that resolves with an
XRSession
object if the device and user agent support the requested mode and features.
This method doesn't throw true exceptions; instead, it rejects the returned promise, passing into it a
DOMException
whose
名称
is one of the following:
InvalidStateError
immersive-vr
but there is already an immersive VR session either currently active or in the process of being set up. There can only be one immersive VR session at a time.
NotSupportedError
sessionMode
; this can also be thrown if any of the
required
options are unsupported.
SecurityError
Permission to enter the specified XR mode is denied. This can happen for a number of reasons, which are covered in more detail in Permissions and security in WebXR 设备 API .
The following example calls
requestSession()
requesting an
"immersive-vr"
session. If the
Promise
resolves, it sets up a session and initiates the animation loop.
navigator.xr.requestSession("immersive-vr")
.then((xrSession) => {
xrSession.addEventListener('end', onXRSessionEnded);
// Do necessary session setup here.
// Begin the session’s animation loop.
xrSession.requestAnimationFrame(onXRAnimationFrame);
}).catch(function(error) {
// "immersive-vr" sessions are not supported
console.warn("'immersive-vr' isn't supported, or an error occurred activating VR!");
});
The following example shows how to use both
isSessionSupported()
and
requestSession()
. First, it checks to see if WebXR is available by verifying the existence of
navigator.xr
. Next, it calls
isSessionSupported()
, passing it the desired session option before enabling controls for entering XR. Adding controls is a necessary step because entering XR requires a user action. Finally, the
onButtonClicked()
method calls
requestSession()
using the same session option passed to
isSessionSupported()
.
if (navigator.xr) {
navigator.xr.isSessionSupported('immersive-vr')
.then((isSupported) => {
if (isSupported) {
immersiveButton.addEventListener('click', onButtonClicked);
immersiveButton.innerHTML = 'Enter XR';
immersiveButton.disabled = false;
} else {
console.log("WebXR doesn't support immersive-vr mode!");
}
});
} else {
console.log("WebXR is not available!");
}
function onButtonClicked() {
if (!xrSession) {
navigator.xr.requestSession('immersive-vr')
.then((session) => {
xrSession = session;
// onSessionStarted() not shown for reasons of brevity and clarity.
onSessionStarted(xrSession);
});
} else {
// Button is a toggle button.
xrSession.end().then(() => xrSession = null);
}
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
WebXR 设备 API
The definition of 'requestSession()' in that specification. |
工作草案 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
requestSession()
|
Chrome 79 | Edge 79 | Firefox 不支持 No | IE 不支持 No | Opera 不支持 No | Safari 不支持 No | WebView Android 不支持 No | Chrome Android 79 | Firefox Android 不支持 No | Opera Android 不支持 No | Safari iOS 不支持 No | Samsung Internet Android 11.2 |
完整支持
不支持
实验。期望将来行为有所改变。
XRSystem
XRSystem: isSessionSupported()
XRSystem: requestSession()
Navigator.xr
WebGLRenderingContext.makeXRCompatible()
XR
XRBoundedReferenceSpace
XRFrame
XRInputSource
XRInputSourceArray
XRInputSourceEvent
XRInputSourcesChangeEvent
XRPose
XRReferenceSpace
XRReferenceSpaceEvent
XRRenderState
XRRigidTransform
XRSession
XRSessionEvent
XRSpace
XRView
XRViewerPose
XRViewport
XRWebGLLayer