I am currently working on a project using A-frame() along with the networked A-frame component: https://www.npmjs.com/package/networked-aframe
To view the project, click here:
I encountered an issue when attempting to replace the following code in scene.html at line 202:
<a-scene moving-sun vr-mode-ui="enabled: false;" physics networked-scene="
room: audio;
adapter: easyrtc;
audio: true;
video: true;
debug: true;
inspector=https://cdn.jsdelivr.net/gh/aframevr/aframe-inspector@master/dist/aframe-inspector.min.js">
With this code:
<a-scene moving-sun vr-mode-ui="enabled: false;" physics dynamic-room="
room: audio;
adapter: easyrtc;
audio: true;
video: true;
debug: true;
inspector=https://cdn.jsdelivr.net/gh/aframevr/aframe-inspector@master/dist/aframe-inspector.min.js">
After making this change, I noticed that the code did not run properly and only displayed a blank white screen.
I'm puzzled as to why this is happening because by simply replacing networked-scene=""
with dynamic-room=""
, the issue persists. Can anyone advise me on how to successfully replace the first piece of code with the second one within the scene.html file at line 202?
If anyone has insights into why this problem is occurring, any help would be greatly appreciated.
Link to the project: