C4 Engine Terathon Software C4 Engine API Documentation

• Graphics Manager

API Links
Developer Links

class GlossMapAttribute

Defined in:  C4Attributes.h
The GlossMapAttribute class represents the material attribute for a gloss map.
Definition

class GlossMapAttribute : public MapAttribute

Constructor

explicit GlossMapAttribute(const char *name);

explicit GlossMapAttribute(Texture *texture);

GlossMapAttribute(const TextureHeader *header, const void *image = nullptr);

Parameters
name The name of the texture map to load.
texture The texture object to use.
header A texture header from which to construct a new texture object.
image A pointer to a texture image that is used if the texture header does not specify an offset to an image.
Description
The GlossMapAttribute class represents the material attribute for a gloss map. The gloss map modulates specular reflection and environment mapping.

See the MapAttribute class for a description of the differences among the various constructors.
Base Classes
MapAttribute All attributes using a texture map are subclasses of MapAttribute.