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

9 lines
154 B
JavaScript

/**
* Selects the lighter of the backdrop and source colors.
*/
var Lighten = function (a, b)
{
return (b > a) ? b : a;
};
module.exports = Lighten;