diff options
| author | iamcheeseman <[email protected]> | 2026-03-13 15:25:03 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-03-13 15:25:03 -0400 |
| commit | 332d00e92bf620b6dd11dc10096ead7a5badd7f4 (patch) | |
| tree | d0e557afe65949d0d7de2f7aa97a8327f1537360 /src/utils.lua | |
| parent | b47490aea2f63d881a2cc69a326b03abae1a46c0 (diff) | |
Add basic entity editor
Diffstat (limited to 'src/utils.lua')
| -rw-r--r-- | src/utils.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.lua b/src/utils.lua index ec5d16e..55a9d35 100644 --- a/src/utils.lua +++ b/src/utils.lua @@ -54,7 +54,7 @@ function clamp(a, min, max) end function snap(x, step) - return math.floor(x / step) * step + return round(x / step) * step end function frac(x) |
