vertex_normal

Set the surface normal for the vertex.

Syntax:

vertex_normal(buffer, nx, ny, nz);


Argument Description
buffer The buffer to write the information to.
nx The x component of the surface normal.
ny The y component of the surface normal.
nz The z component of the surface normal.


Returns: N/A


Description

This function will add surface normal data to the vertex currently being defined for the custom primitive. You supply the buffer to write the data into as well as the x, y and z component parts of the normal.


Example:

vertex_normal(buff, 0, 1, 1);

The above code will set the surface normal of the vertex being defined.


Back: Building Primitives
Next: vertex_position
© Copyright YoYo Games Ltd. 2018 All Rights Reserved