I followed the steps of this link to export a blender object to babylon.js Blender - Babylon.js Documentation
Now I have my object (a metro station modeling in blender) and I can visualize the object using HTML script mention in the link I showed you.
The problem is that the shape of the object is like a fixed image , can I control the camera through BJS ? (rotate with the mouse, zoom in, zoom out), so that I can walk around my station.
and when I import the object, does the BJS exporter exports all the meshes of the object element by element and ensures their quality or exports the whole thing in one object ? (because I need meshes to use them in code for animations like mechanical stairs for example)
If you modeled the station with seperate meshes, they get exported as seperate meshes. If you modelled them as one mesh then you get one mesh. The quality depends on the quality you used in Blender. Low poly in Blender, low poly in Babylon.
As for the camera and lights, did you set them up in Blender, and export them? Have you attached the camera to the scene in your code?
thank you so much for your reply, I solve the problem by deleting camera in blender, no it works
about meshes, I f I want to call them in code, I use directly their names using in blender ?