Firstly, sorry if my question is too Noob. I have never done web development so I may not know what I am talking about .
I have developed a 3d scanning app, it scans object and turns them to 3d mesh. Now I want to have a web viewer that anyone can embed to their website. I was wondering if this can be achived by needle engine. These are my thoughts.
Create a needle project with an object/ model and export that to three js project.
Somehow create an api that can talk to my three js project and change the object with the one I pass.
Find a way to embed this into an iframe / div so anyone can add it to their site.
Things are bit vague it my head right now and before I spend more time, I just wanted to know if this is possible?
What you ask for is totally possible. What format are your scanned models in? If they are already glTF or glb they can just be loaded into your project (via your API or by dropping the file to the web page for example, we have a built-in component called “DropListener” that you can add to your scene to test that functionality)
You can deploy your Needle Engine project with one of your “DeployTo…” component to e.g. Glitch or Github pages or your own server via DeployToFTP and then embed that with an iFrame wherever you want to use your viewer. We do the same on our samples website right now for example
Thats so amazing Marcel!! and thanks for such quick response. I am going to look into it. Yes, my app can export in gltf, glb, fbx and usd. So looks like there is hope. I will try this out.