Template:Storage grid: Difference between revisions

From Space Station 14 Wiki
Aliser (talk | contribs)
No edit summary
Aliser (talk | contribs)
No edit summary
Line 40: Line 40:
"mode": {
"mode": {
"label": "Mode",
"label": "Mode",
"description": "How to interpret the grids? If using grids defined in game YML files, use 'Position x Position' format (x1, y1, x2, y2), which is the default. Another format is 'Position x Size' (x, y, width, height).",
"description": "How to interpret the grids? If using grids defined in game YML files, use 'Position x Position' format (x1, y1, x2, y2), which is the default. Another format is 'Position x Size' (x, y, width, height). Lowercase value are allowed.",
"type": "line",
"type": "line",
"suggestedvalues": [
"suggestedvalues": [
"Position x Position",
"Position x Position",
"Position x Size"
"Position x Size",
"Pos Pos",
"Pos Size"
],
],
"default": "Position x Position",
"default": "Position x Position",

Revision as of 05:03, 30 March 2025

Template documentation
view or edit this documentation about template documentation
Uses Lua module
This template uses Lua module:
Uses template styles
This template uses template styles found in:

Usage

{{storage grid|<grid 1>|<grid 2>|<grid N>}}

Example

Position x Position mode (for YML grids, default)

Single grid

A simple 1x2 grid.

{{storage grid|0,0,0,1}}

Two grids

A 1x4 and 2x4 grids with one-cell-wide empty space in between.

{{storage grid|0,0,0,3|2,0,3,3}}

Three grids

A 2x4, 2x3 and 2x4 grids with one-cell-wide empty space in between each.

{{storage grid|0,0,1,3|2,1,3,3|5,0,1,3}}

Position x Size mode (alternative mode)

Single grid

A simple 1x2 grid.

{{storage grid|mode=pos size|0,0,1,2}}

Two grids

A 1x4 and 2x4 grids with one-cell-wide empty space in between.

{{storage grid|mode=pos size|0,0,1,4|2,0,2,4}}

Three grids

A 2x4, 2x3 and 2x4 grids with one-cell-wide empty space in between each.

{{storage grid|mode=pos size|0,0,2,4|3,1,2,3|6,0,2,4}}

Generates a storage grid.

Template parameters[Edit template data]

This template prefers block formatting of parameters.

ParameterDescriptionTypeStatus
Modemode

How to interpret the grids? If using grids defined in game YML files, use 'Position x Position' format (x1, y1, x2, y2), which is the default. Another format is 'Position x Size' (x, y, width, height). Lowercase value are allowed.

Suggested values
Position x Position Position x Size Pos Pos Pos Size
Default
Position x Position
Linesuggested
Grid 11

Specify a single grid using format 'x, y, width, height'.

Example
0, 0, 1, 3 OR 3,0,6,3
Linerequired
Grid 22

no description

Linesuggested
Grid 33

no description

Linesuggested
Grid 44

no description

Linesuggested
Grid 55

no description

Linesuggested