phaser/wip/blendmodes/Subtract.js
2018-01-25 15:48:33 +00:00

9 lines
185 B
JavaScript

/**
* Combines the source and backdrop colors and returns their value minus 255.
*/
var Subtract = function (a, b)
{
return Math.max(0, a + b - 255);
};
module.exports = Subtract;