phaser/wip/blendmodes/Darken.js

10 lines
151 B
JavaScript
Raw Normal View History

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