Prototype/NamedNoiseExpression: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(Converted to SMW format)
(oops)
Line 24: Line 24:
For example if a noise expression is intended to be used as an alternative temperature generator, <code>intended_property</code> should be "temperature".
For example if a noise expression is intended to be used as an alternative temperature generator, <code>intended_property</code> should be "temperature".


{{Prototype property|order|[[Types/Order|Order]]|optional=true}}
=== order ===
:''See [[PrototypeBase#name]]''
 
Used to order alternative expressions in the map generator GUI.
Used to order alternative expressions in the map generator GUI.
For a given property (e.g. 'temperature'), the NamedNoiseExpression with that property's name as its <code>intended_property</code>
For a given property (e.g. 'temperature'), the NamedNoiseExpression with that property's name as its <code>intended_property</code>

Revision as of 18:27, 6 August 2019

Template:Prototype parent A NoiseExpression together with a name.

Named noise expressions are used to specify functions for elevation, temperature, moisture, aux, and cliffiness; e.g. the "elevation" expression is used to calculate elevation for every point on a map.

MapGenSettings can override which named expression is used to calculate a given property by having an entry in property_expression_names e.g. elevation = "0.16-elevation". Alternate expressions can be made available in the map generator GUI by setting their intended_property to the name of the property they should override.

Template:Prototype TOC

Mandatory properties

Inherits all properties from PrototypeBase.

Template:Prototype property The expression itself.

Optional properties

Template:Prototype property Names the property that this expression is intended to provide a value for, if any. This will make the expression show up as an option in the map generator GUI, unless it is the only expression with that intended property, in which case it will be hidden and selected by default.

For example if a noise expression is intended to be used as an alternative temperature generator, intended_property should be "temperature".

order

See PrototypeBase#name

Used to order alternative expressions in the map generator GUI. For a given property (e.g. 'temperature'), the NamedNoiseExpression with that property's name as its intended_property with the lowest order will be chosen as the default in the GUI.

If no order is specified, it defaults to "2000" if the property name matches the expression name (making it the 'technical default' generator for the property if none is specified in MapGenSettings), or "3000" otherwise. A generator defined with an order less than "2000" but with a unique name can thereby override the default generator used when creating a new map through the GUI without automatically overriding the 'technical default' generator, which is probably used by existing maps.