mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 05:03:37 +00:00
12 lines
231 B
JavaScript
12 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;
|