paolis92

Results 2 comments of 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"}` ![image](https://user-images.githubusercontent.com/1167302/79850334-0e99a380-83c4-11ea-8073-8d72c5386881.png) (I moved a...