Prototype/AutoplaceControl: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(Added prototype type to page)
(Updated styling of prototype doc migration note)
 
(13 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== Basics ==
<div class="stub"><p>'''The prototype docs have moved to a new website with an improved format.''' This documentation page can now be found here: [https://lua-api.factorio.com/latest/prototypes/AutoplaceControl.html https://lua-api.factorio.com/latest/prototypes/AutoplaceControl.html]
Prototype type: '''autoplace-control'''


A setting in the map creation GUI. Used by the [[Types/AutoplaceSpecification#control|autoplace system]].
</p><p>This wiki page is no longer updated and '''will be removed at some point in the future''', so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback [https://forums.factorio.com/viewforum.php?f=233 on the forums].</p></div>


== Mandatory properties ==
Inherits all properties from [[Prototype]].


=== category ===
'''Type''': [[Types/string]]


Either "resource" or "terrain".
{{Prototype parent|PrototypeBase}}
A setting in the map creation GUI. Used by the [[Types/AutoplaceSpecification#control|autoplace system]]. Only 255 instances of this prototype may be defined.


== Optional properties ==
{{Prototype TOC|autoplace-control}}


=== richness ===
== Mandatory properties ==
'''Type''': [[Types/bool]]
Inherits all properties from [[PrototypeBase]].


'''Default''': false
{{Prototype property|category|[[Types/string|string]]}}
Either "resource", "terrain" or "enemy". Controls in what tab the autoplace is shown in the map generator GUI.


Sets whether this control's richness can be set by the player or not.
== Optional properties ==
 
If your autoplace control is used to generate ores, you probably want this to be true.


== Differing defaults ==
{{Prototype property|richness|[[Types/bool|bool]]|false|optional=true}}
=== order ===
Sets whether this control's richness can be changed. The map generator GUI will only show the richness slider when the <code>category</code> is "resource".
:''See [[Prototype#order]]''


'''Default''': ""
If the autoplace control is used to generate ores, you probably want this to be true.


Controls are sorted in the map creation GUI according to this property.
{{Prototype property|can_be_disabled|[[Types/bool|bool]]|true|optional=true}}
Whether there is an "enable" checkbox for the autoplace control in the map generator GUI. If this is false, the autoplace control cannot be disabled from the GUI.

Latest revision as of 10:42, 21 September 2023

The prototype docs have moved to a new website with an improved format. This documentation page can now be found here: https://lua-api.factorio.com/latest/prototypes/AutoplaceControl.html

This wiki page is no longer updated and will be removed at some point in the future, so please update your browser bookmarks or other links that sent you here. If you'd like to contribute to the new docs, you can leave your feedback on the forums.


Prototype definitions » PrototypeBase » Prototype/AutoplaceControl


A setting in the map creation GUI. Used by the autoplace system. Only 255 instances of this prototype may be defined.


Prototype/AutoplaceControl — autoplace-control
category::string
can_be_disabled::bool (optional)
richness::bool (optional)
Inherited from PrototypeBase
name::string
type::string
localised_description::LocalisedString (optional)
localised_name::LocalisedString (optional)
order::Order (optional)

Mandatory properties

Inherits all properties from PrototypeBase.

category

Type: string
Either "resource", "terrain" or "enemy". Controls in what tab the autoplace is shown in the map generator GUI.

Optional properties

richness

Type: bool
Default: false
Sets whether this control's richness can be changed. The map generator GUI will only show the richness slider when the category is "resource".

If the autoplace control is used to generate ores, you probably want this to be true.

can_be_disabled

Type: bool
Default: true
Whether there is an "enable" checkbox for the autoplace control in the map generator GUI. If this is false, the autoplace control cannot be disabled from the GUI.