Prototype/SelectionTool: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
No edit summary
(Removed old prototype docs)
Tag: Replaced
 
(22 intermediate revisions by 7 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/SelectionToolPrototype.html https://lua-api.factorio.com/latest/prototypes/SelectionToolPrototype.html]
Inherits from [[prototype/ItemWithLabel]] and is used in the base game for the blueprint item and the deconstruction item.
  type = "item-with-label"


== Mandatory properties ==
</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>
=== selection_color ===
The color of the rectangle used when standard selection is done in-game.
  selection_color = {r=1, g=0, b=0, a=1} -- red
 
=== alt_selection_color ===
The color of the rectangle used when alt-selection is done in-game.
  alt_selection_color = {r=0, g=1, b=0, a=1} -- green
 
=== selection_mode ===
A list of selection mode flags that define how the selection tool selects things in-game.
  selection_mode = {"blueprint"}
 
Possible values are:
{| class="wikitable"
|-
! Flag !! meaning
|-
| blueprint  || The normal rules for acceptable entities in blueprints
|-
| deconstruct || The normal rules for acceptable entities for deconstruction
|-
| cancel-deconstruct || The normal rules for acceptable entities for cancel deconstruction
|-
| items || Item entities
|-
| trees || Trees
|-
| buildable-type || Buildable entities as defined by the game
|-
| tiles || Any tiles
|-
| items-to-place || The entity has an item that builds the entity
|-
| any-entity || Any entity
|-
| any-tile || Any tile
|-
| matches-force || The entity force matches that of the player doing the selection
|}
 
=== alt_selection_mode ===
A list of selection mode flags that define how the selection tool alt-selects things in-game.
  alt_selection_mode = {"cancel-deconstruct"}
Possible values are identical to normal selection_mode.
 
=== selection_cursor_box_type ===
The type of cursor box used to render selection of entities/tiles when standard selecting.
  selection_cursor_box_type = "entity"
Possible values are:
{| class="wikitable"
|-
! Flag !! meaning
|-
| entity  || The normal entity selection box. Yellow by default.
|-
| electricity || The selection box used to specify electric poles an entity is connected to. Light blue by default.
|-
| copy || The selection box used when doing entity copy-paste. Green by default.
|-
| not-allowed || The selection box used when specifying colliding entities. Red by default.
|-
| pair ||
|-
| logistics ||
|}
 
 
== Optional properties ==
=== always_include_tiles ===
If tiles should be included in the selection regardless of entities also being in the selection. By default this is false. This is a visual only setting.
  always_include_tiles = false

Latest revision as of 14:33, 25 October 2024

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/SelectionToolPrototype.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.