phaser/wip/blendmodes/Lighten.js

10 lines
154 B
JavaScript
Raw Normal View History

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