File size: 600 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
----- Height editing - terrain & grid invalidation logic
if FirstLoad then
EditorHeightDirtyBox = false
end
function OnMsg.EditorHeightChanged(final, bbox)
if bbox then
EditorHeightDirtyBox = AddRects(EditorHeightDirtyBox or bbox, bbox)
end
terrain.InvalidateHeight(bbox)
editor.UpdateObjectsZ(bbox)
if final then
ApplyAllWaterObjects(bbox)
if EditorHeightDirtyBox then
DelayedCall(1250, XEditorRebuildGrids)
end
Msg("EditorHeightChangedFinal", EditorHeightDirtyBox)
end
end
function XEditorRebuildGrids()
RebuildGrids(EditorHeightDirtyBox)
EditorHeightDirtyBox = false
end |