We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 027b6dd + 20b2509 commit 44bbf1aCopy full SHA for 44bbf1a
Examples/Applications/SkyboxViewer/index.js
@@ -292,10 +292,10 @@ function createVisualization(container, mapReader) {
292
document.querySelector('body').appendChild(button);
293
button.addEventListener('click', () => {
294
if (button.textContent === 'Send To VR') {
295
- fullScreenRenderer.getOpenGLRenderWindow().startVR();
+ fullScreenRenderer.getApiSpecificRenderWindow().startVR();
296
button.textContent = 'Return From VR';
297
} else {
298
- fullScreenRenderer.getOpenGLRenderWindow().stopVR();
+ fullScreenRenderer.getApiSpecificRenderWindow().stopVR();
299
button.textContent = 'Send To VR';
300
}
301
});
0 commit comments