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.
1 parent 77bc111 commit d58d8edCopy full SHA for d58d8ed
app.html
@@ -673,7 +673,6 @@
673
.then(res => res.json())
674
.then(scenesJson => {
675
return s => {
676
- console.log("scenes.json");
677
const maxResults = 12;
678
if (s) {
679
const regexps = s.split(/\s/).filter(s => !!s).map(s => new RegExp(escapeRegExp(s), 'i'));
@@ -3730,6 +3729,15 @@
3730
3729
} else {
3731
console.log('paste fail');
3732
}
+ } else if (id === 'action-load-scene') {
3733
+ window.parentPostMessage({
3734
+ method: 'loadScene',
3735
+ });
3736
+ } else if (id === 'action-save-scene') {
3737
3738
+ method: 'saveScene',
3739
+ html: root.outerHTML,
3740
3741
} else if (href) {
3742
const xrIframe = document.createElement('xr-iframe');
3743
xrIframe.src = href;
0 commit comments