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

9 lines
128 B
JavaScript

/**
* Blends the source color, ignoring the backdrop.
*/
var Normal = function (a)
{
return a;
};
module.exports = Normal;