Feasibility of a 3D interactive visualization under babylon.js

Hi,
I’m new here and I need your help :persevere::persevere::persevere:
I’ve to develop a 3d metro station interactive visualisation (I’ve SketchUp .skp files for my metro station).
you will find attached a video that shows a similar work
https://youtu.be/yu-M6Omk1ps
My question is to give me your opinion about the feasability of the 3d interface using babylon.js especialy that the client environment doesn’t support internet access, can I use the babylon.js librairie offline ?

Best regards

Anes

1 Like

Hello and welcome!

There is no problem to use babylon.js offline. You just need to download the .js file locally.

Regarding your project video, I see no problem to do it with babylon.js

Thank you for your quick reply, I hope so especialy that I didn’t code with JS before :confounded::confounded::confounded:

1 Like

We have an extensive list of documentation and a quite active forum to help :slight_smile:

Yea I see, have a reply within 10 minutes, it’s interesting :yum: I’ll start by getting started.

So u told to load BJS files and I can use the librairie, and when I finish it will be a HTML file including JS scripts that use BJS librairie, so I need to move it to client machine, didn’t I ?

Thx

1 Like

At Sony Electronics we built two applications running offline at SXSW. Simply run your app locally by using the command prompt.

Galen

1 Like

Here is a great blog post about various options of making offline apps out of web tech -

2 Likes

Thank u for ur reply, I’ll check the blog peace :v:

Okay, I’ll try thank u :grinning::grinning::grinning:

1 Like

The article is quite extensive, however this only requires a few cmd commands. First, I recommend installing and running YARN to install and execute local code. Keep in mind that you should update yarn every week or so… or if you have any issues at all. Installing YARN is a foundation application. Once YARN is installed, you can then run an NPM local server. Single command.

Once the server is installed, then you run a second command to launch your code in the browser - I highly recommend Electron. Once YARN is installed it only takes two commands to run your web code locally.

I hope this makes sense.

Galen