Blender addon that exports to vertex buffers, made for GameMaker Studio 2
Load files with buffer_load(), make vertex buffers with vertex_buffer_create_from_buffer. Better docs coming soon!
Required GameMaker Vertex Format Order:
{
vertex_format_add_normal();
vertex_format_add_texcoord();
vertex_format_add_position_3d();
vertex_format_add_color();
}
I use this order to make normals and uv optional, eventually Perhaps support for custom attributes will come in the future?