RwSetPolygonSpecular(RwPolygon3d *polygon, RwReal ks);
Description
Sets the specular reflection coefficient of the polygons material.
Arguments
polygon Pointer to the polygon.
ks Specular reflection coefficient in the range CREAL(0.0) to CREAL(1.0).
Return Value
The argument polygon if successful, and NULL otherwise.
Comments
RenderWare optimizes memory usage by sharing materials across multiple polygons. Setting a polygon material property with this function will cause the polygon to have its own copy of the material, not shared by any other polygons. Unless this is the desired effect, it is more memory efficient to use the corresponding material function RwSetMaterialSpecular() to change the underlying polygon material. This change will then be propagated to all polygons which use the material. The following line of code demonstrates how this is achieved:
RwSetMaterialSpecular(RwGetPolygonMaterial(polygon), ks);
See Also