mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 06:28:30 +00:00
9 lines
128 B
JavaScript
9 lines
128 B
JavaScript
/**
|
|
* Blends the source color, ignoring the backdrop.
|
|
*/
|
|
var Normal = function (a)
|
|
{
|
|
return a;
|
|
};
|
|
|
|
module.exports = Normal;
|