//sculpt: sort pos{1,2}_compute

This commit is contained in:
Starbeamrainbowlabs 2021-12-28 18:38:10 +00:00
parent 732010a8ee
commit ca6f1e7cea
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,10 @@ local function apply(pos1, brush_name, height, brush_size)
local pos1_compute = pos1 - brush_size_radius
local pos2_compute = pos1 + brush_size_radius + Vector3.new(0, height, 0)
pos1_compute, pos2_compute = Vector3.sort(
pos1_compute,
pos2_compute
)
-- 2: Fetch the nodes in the specified area, extract heightmap
local manip, area = worldedit.manip_helpers.init(pos1_compute, pos2_compute)