phaser/v3/src/math/MaxAdd.js

8 lines
117 B
JavaScript
Raw Normal View History

var MaxAdd = function (value, amount, max)
{
return Math.min(value + amount, max);
};
module.exports = MaxAdd;