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

9 lines
134 B
JavaScript

/**
* Negation blend mode.
*/
var Negation = function (a, b)
{
return 255 - Math.abs(255 - a - b);
};
module.exports = Negation;