ESX.Math.Round¶
1 | ESX.Math.Round(value, numDecimalPlaces) |
This function rounds off a number, and optionally you can parse how many decimals you want (defaults to 0)
ESX.Math.Round Exemplo¶
1 2 3 4 5 | local value - 5.444 print('value: ' .. value) -- returns 5.444 print('value rounded: ' .. ESX.Math.Round(value)) -- returns 5 print('value rounded: ' .. ESX.Math.Round(value, 1)) -- returns 5.4 |