mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 22:52:14 +00:00
12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
|
var Add = require('./Add');
|
||
|
|
||
|
/**
|
||
|
* An alias for blendAdd, it simply sums the values of the two colors.
|
||
|
*/
|
||
|
var LinearDodge = function (a, b)
|
||
|
{
|
||
|
return Add(a, b);
|
||
|
};
|
||
|
|
||
|
module.exports = LinearDodge;
|