Hey everyone. I'm trying to be able to modify a piece of a terrain at a given x,y coordinate, then around that point in a circle with a variable radius. Right now I raise the terrain with a square "radius" easily enough:
But im not so sure about how to do it circularly. Thanks for any help!
For xr=0 To radius For zr=0 To radius ModifyTerrain ter,x+xr,z+zr,height ModifyTerrain ter,x-xr,z-zr,height ModifyTerrain ter,x+xr,z-zr,height ModifyTerrain ter,x-xr,z+zr,height Next Next
But im not so sure about how to do it circularly. Thanks for any help!