UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

34 lines (28 loc) 1.22 kB
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2025 Phaser Studio Inc. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ var GetValue = require('./GetValue'); var Clamp = require('../../math/Clamp'); /** * Retrieves and clamps a numerical value from an object. * * @function Phaser.Utils.Objects.GetMinMaxValue * @since 3.0.0 * * @param {object} source - The object to retrieve the value from. * @param {string} key - The name of the property to retrieve from the object. If a property is nested, the names of its preceding properties should be separated by a dot (`.`). * @param {number} min - The minimum value which can be returned. * @param {number} max - The maximum value which can be returned. * @param {number} defaultValue - The value to return if the property doesn't exist. It's also constrained to the given bounds. * * @return {number} The clamped value from the `source` object. */ var GetMinMaxValue = function (source, key, min, max, defaultValue) { if (defaultValue === undefined) { defaultValue = min; } var value = GetValue(source, key, defaultValue); return Clamp(value, min, max); }; module.exports = GetMinMaxValue;