Hello,is anybody know how to get mesh ,triangles,vertices and uv from model in babylon.js .I can get these attributes in unity.
Hello and welcome,
you need to call mesh.getVerticesData(kind)
. Kind can be “position” , “uv”, “normal” etc…
You can find an example of use here:
That is useful.Thank you.