public LightingColorFilter(int mul, int add)Create a colorfilter that multiplies the RGB channels by one color, and then adds a second color,
pinning the result for each component to [0..255]. The alpha components of the mul and add arguments
are ignored.
native_instance = native_CreateLightingFilter(mul, add);
|