- 0 Talk
-
Truncate
This is a user-defined function that you can copy and paste into your addon. Replace <PREFIX> with your AddOn's prefix to avoid conflicts between different versions of these functions.
Truncate a number off to n places.
number = truncate(number, decimals)
Function Parameters
Edit
Arguments
Edit
- number
- Number. The number to truncate.
- decimals
- Number. Truncate to this many places.
Returns
Edit
- number
- Number. The truncated number.
Example
Edit
local number = truncate(math.pi, 3) print(number)
Prints: 3.141
Code
Edit
function truncate(number, decimals)
return number - (number % (0.1 ^ decimals))
end