paolis92
paolis92
Hi, based on your error, your problem is here in WebServerComponent.Start() : ``` var appPath = Application.dataPath; var wwwPath = appPath.Substring(0, appPath.LastIndexOf("Assets")) + "www"; ``` In the editor it works...
Hi, the issue is that you are using gltf-model like this: `gltf-model={{src:'#earth'}}` when it should be: `gltf-model={"#earth"}` The same goes for your example `gltf-model={{src:'#model'}}` becomes `gltf-model={"#model"}`  (I moved a...