vertex_float1

This function adds a floating point value to the vertex data.

The vertex buffer must have been formatted correctly to accept this using the vertex_format_add_custom function.

 

Syntax:

vertex_float1(buffer, float);

ArgumentTypeDescription
bufferVertex BufferThe vertex buffer to write the information to.
floatRealThe input value.

 

Returns:

N/A

 

Example:

vertex_float1(buff, 0.05);

The above code adds a floating point value to the vertex data being defined.