Home › Forums › General Questions › Automatic UV and baking possible?
- This topic has 6 replies, 3 voices, and was last updated 4 years ago by web.
-
AuthorPosts
-
2020-10-29 at 8:50 am #34702vmtsCustomer
We try to create a architecture scene but we think verge3D loading time very long, i found some solutions tools online like https://www.shapespark.com/, it ist really light and fast, my question, can we use Verge3D with automatic UV and baking like shapespark, or you know any suggestion how we can faster with verg3D?
Take a look at our website
One stop services Verge3D: 3D Modelling + Coding
Our sample ECO2 Sales Tools
Audi2020-10-29 at 11:57 am #34707Yuri KovelenovStaffHi,
thanks for sharing the link. I launched one of the demos and it indeed loaded pretty fast (despite the file size 40 Mb). I guess this demo uses just a few or only one shader for all assets. You can implement this with Verge3D if you check the glTF compatible checkbox for all materials.
2020-11-02 at 2:42 pm #34868webCustomerSorry to hijack this thread. But could explain the glTF compatible thing a little bit more?
I’ve looked at the documentation but it wasnt clear for me how this leads to faster loading. For example, would loading time decrease when you change a material with single diffuse texture to glTF compatible?
Or is this only applicable for more complex shader?
2020-11-02 at 3:09 pm #34869Yuri KovelenovStaffHi,
Besides asset file size and network speed, the shader complication stage affects the loading much. This is because in WebGL, shaders are compiled rather slowly. So the less shaders your application uses, the faster is loading. Also, shaders are cached by WebGL, so if your shader is used by multiple objects it is compiled only once.
Therefore for fast loading, it is important to use as few unique shaders as possible. One of possible way to achieve this is to enable the glTF compatibility flag, which a) simplifies the shaders a lot so that they are compiled and work faster and b) standardizes them to enable for more effective caching.
The obvious drawback of using glTF-compatible shaders is that they may be too simplistic for implementing desired graphics effects. So as it is always in real-time graphics, you need to balance between quality and performance.
2020-11-03 at 8:52 am #34922webCustomerOkay, thx for the explanation.
So if you want fastest loading glTF is the way to go. Only drawbacks could be lower graphic quality.2020-11-03 at 12:21 pm #34956Yuri KovelenovStaff2020-11-03 at 1:04 pm #34961webCustomerThx for the addition
-
AuthorPosts
- You must be logged in to reply to this topic.