Skip to content

Instantly share code, notes, and snippets.

@makihiro
Created March 9, 2020 06:11
Show Gist options
  • Save makihiro/59f1cedc260553d64f0666b466298dbe to your computer and use it in GitHub Desktop.
Save makihiro/59f1cedc260553d64f0666b466298dbe to your computer and use it in GitHub Desktop.
//L107-113
function onRequestSession() {
return navigator.xr.requestSession('immersive-ar', {requiredFeatures: ['local', 'hit-test']})
.then((session) => {
// XRセッションを開始する処理
// requiredFeaturesでhit-testを要求
xrButton.setSession(session);
onSessionStarted(session); //onSessionStartedのコール
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment