79 /// @brief A modifier that will use a mask image to set the alpha channels of a source image.
80 /// @details Depending on how the members are configured, an AlphaMaskModifier can operate in one of three modes:
81 /// <ol><li>Extract alpha channel as an opaque monochrome bitmap or</li><li>Multiply alpha channel with parameter image pixel intensity, or</li><li>Use parameter image as color alpha mask.</li></ol> @n
82 /// Mode 1 is accomplished by leaving or setting the MaskTexture member to NULL, regardless of the ColourMask member. Mode 2 is accomplished by setting the MaskTexture member to a valid texture and
83 /// leaving or setting the ColourMask member to false. Mode 3 is accomplished by setting the MaskTexture member to a valid texture and setting the ColourMask member to true.
116 /// @brief Sets whether or not the colour of the mask will be used instead of the intensity.
117 /// @param UseColour Whether or not to use normalized colours from the mask for calculating the alpha channel, instead of the intensity. Initial Value: False.