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

11 lines
231 B
JavaScript

var Reflect = require('./Reflect');
/**
* Glow blend mode. This mode is a variation of reflect mode with the source and backdrop colors swapped.
*/
var Glow = function (a, b)
{
return Reflect(b, a);
};
module.exports = Glow;