mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 21:53:59 +00:00
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
var Subtract = require('./Subtract');
|
|
|
|
/**
|
|
* An alias for blendSubtract, it simply sums the values of the two colors and subtracts 255.
|
|
*/
|
|
var LinearBurn = function (a, b)
|
|
{
|
|
return Subtract(a, b);
|
|
};
|
|
|
|
module.exports = LinearBurn;
|