mirror of
https://github.com/photonstorm/phaser
synced 2025-01-05 09:48:49 +00:00
12 lines
179 B
JavaScript
12 lines
179 B
JavaScript
|
var IncAlpha = function (items, value)
|
||
|
{
|
||
|
for (var i = 0; i < items.length; i++)
|
||
|
{
|
||
|
items[i].alpha += value;
|
||
|
}
|
||
|
|
||
|
return items;
|
||
|
};
|
||
|
|
||
|
module.exports = IncAlpha;
|