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