Just how you store verticies into an array…
Vector3 Verticies = mesh.verticies;
How can I store the colors into an array? because doing it this way…
Color32[] Colors = mesh.colors;
print(Colors.length);// it returns 0
What am I doing wrong here, How can I get the color of each vertex stored into an array?