unity find the location of vertices on an object code example
Example: get position of a vertices unity
Matrix 4x4 localToWorld = transform.localToWorldMatrix; for(int i = 0; i<mf.mesh.vertices.Length; ++i){ Vector3 world_v = localToWorld.MultiplyPoint3x4(mf.mesh.vertices[i]); }