Changes between Version 38 and Version 39 of Rmgen_Library


Ignore:
Timestamp:
Oct 16, 2017, 11:03:50 PM (7 years ago)
Author:
elexis
Comment:

PathPlacer isn't a centered placer, because it doesn't have an x and z property that can be randomize by randomizePlacerCoordinates, thus can't be called from createAreas but only createArea.

Legend:

Unmodified
Added
Removed
Modified
  • Rmgen_Library

    v38 v39  
    7070  * '''smoothness''': A value from 0.0 to 1.0 saying how smooth the border of the clump is, that is, approximately how many "peaks" and "valleys" stick out from the clump (between these the border is a smooth curve). 1.0 will have 2 or 3 "peaks" while 0.0 will have features the size of a single tile. Use high smoothness for areas like seas, cliffs and lakes, and low smoothness for areas like forests.
    7171  * '''x, z''': Optional tile coordinates of placer.
     72
     73==== Other placers ====
    7274
    7375 * `PathPlacer(x1, z1, x2, z2, width, waviness, smoothness, offset, taper)`: Places a wavy path of terrain between two points. The parameters mean the following:
     
    7981  * '''offset''': Max amplitude of waves along the path (0.0 is straight line)
    8082  * '''taper''': How much the width of the path changes from start to end. If positive, the width will decrease by that factor, if negative the width will increase by that factor.
    81 
    82 ==== Other placers ====
    8383
    8484 * `RectPlacer(x1, z1, x2, z2)`: Places a grid-aligned rectangle from (x1,z1) to (x2,z2), where x1 < x2 and z1 < z2. Not usable with `createAreas` since it's not a centered placer.