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

9 lines
188 B
JavaScript

/**
* Adds the source and backdrop colors together and returns the value, up to a maximum of 255.
*/
var Add = function (a, b)
{
return Math.min(255, a + b);
};
module.exports = Add;