script info

Download Script Info

If you can't read please download the document

Upload: gangolas

Post on 19-Dec-2015

212 views

Category:

Documents


0 download

DESCRIPTION

FT3 Pro Script Info

TRANSCRIPT

Tool Force [Offset|Scale|Rainfall|Temperature] value set the value of the indicated layer to the value given.Tool Raise [Offset|Scale|Rainfall|Temperature] value min max raise the value of the indicated layer to the value given.only selected areas are affected.min and max are the minimum and maximum values that are allowed in theresult. these values are in the native units for the layer.Tool Lower [Offset|Scale|Rainfall|Temperature] value min max lower the value of the indicated layer to the value givenonly selected areas are affected.min and max are the minimum and maximum values that are allowed in theresult. these values are in the native units for the layer.Tool Smooth [Offset|Scale|Rainfall|Temperature] value smooth the values of the indicated layer by the amount givenonly selected areas are affected.Tool Clip [Offset|Scale|Rainfall|Temperature] low high clip the indicated layer so that all values are between low and highonly selected areas are affected.Tool Burn_in_to_surface copy the current altitude value into the offset channel. All areasare affected regardless of selection.Tool Mound min max gamma replace[y|n] create a mound as per the mound commandSelect All select all points on the surfaceSelect None select no points on the surface and inactive the selection (cmds affect all).Select Invert invert the selectionSelect Threshold threshold convert the selection to a binary image at the threshold level given.Select Feather value smooth the selection by the value indicated.Select Expand value expand the selection by the value indicatedSelect Contract value contract the selection by the value indicatedSelect Load path [Replace|Add|Subtract] load a selection from the indicated path (no spaces allowed in the path).the operation indicates what the selection will do with the load action.Select Save path save the current selection as an 8-bit grayscale BMP image. no spaces areallowed in the path name.Select Range [Altitude|Temperature|Rainfall] how what min max how = [Between|Not_between|Greater_than|Less_than] what = [Replace|Add|Subtract] select world parts on the indicated layer with the indicated mode values.bug report for 1.61.0.0: greater_than and less_than are reversed in meaningnote that native units for the layers are: K for temperaturecm/yr for rainm for altitude or offsetno units are defined for scale--------------------------------- CUT HERE ----------------------------------// Sample script to smooth out lower altitudes.// comment lines start with a '//' digram# or a '#' symbol// smooth most of the stuff a littleselect range altitude between replace 20000 100000// note that we still need a max with between and between. whoops.select smooth 2.0 // comments can go on the end of linestool lower scale 0.1 0 100000// note that we don't care about the upper bound so use a large value// lower altitudes a bit moreselect range altitude between replace 10000 100000select smooth 2.0tool lower scale 0.1 0 100000// even lower get a little moreselect range altitude between replace 5000 100000select smooth 2.0tool lower scale 0.1 0 100000// and so onselect range altitude between replace 1000 100000select smooth 2.0tool lower scale 0.1 0 100000--------------------------------- CUT HERE ----------------------------------// save slices of the world at different elevations to BMP filesselect range altitude between replace -1000 100000save n1000.bmpselect range altitude between replace 0 100000 // sea levelsave sealevel.bmpselect range altitude between replace 1000 100000save sealevel.bmp--------------------------------- CUT HERE ----------------------------------