Always round down

I am trying to make a math function that involves division and sometimes it will end in a decimal point.
I would like for it to always round down further. (Truncate wont work because if the number ends up as “-0.5” and truncate would round it to “0” and I would like for it to run down further to -1 instead.

Try flooring instead of truncating the number, the node below would result in -1

281675-untitled.png

1 Like

Thank you! This helped! I almost went though trying to make an equation to try and do that.