Kit (Sign)
More actions
![]() | |
| Constructing Options | Sign 1x1, Sign 2x1 |
|---|---|
| Properties | |
| Stacks | Yes (10) |
| Paintable | No |
| Recipes | |
| Autolathe | 3g Iron |
| Logic | |
| Item Hash | 529996327 |
| Item Name | ItemKitSign |
| Logic Classes |
SlotClass.None SortingClass.Kits |
Description
Signs can be placed on walls and frames. Use the Labeller to add text to them.
The sign's text is capable of being formatted using rich text tags.
Example: "<b>Important</b> Sign" would make the "Important" portion of the text appear in bold.
The current version of Stationeers uses Unity.TextMeshPro version 1.4 to support rich text tags. Official documentation is no longer available at the source but can be found on the Wayback Machine.
A list of common formatting properties is provided below:
| Property | Code |
|---|---|
| Bold | Use <b> and </b>. |
| Italics | Use <i> and </i>. |
| Underline | Use <u> and </u>. |
| Strikethrough | Use <s> and </s>. |
| Superscript | Use <sup> and </sup> |
| Subscript | Use <sub> and </sub> |
| Linefeed | Use <br> to force a linefeed. |
| Non-breaking Spaces | Use <nobr> and </nobr> to prevent word-wrapping. The font size will be auto scaled to fit the text. |
| Monospacing | Use <mspace=1em> and </mspace> to monospace the text. |
| Tab | Use \t which will add one tab stop. |
| Margin | Use the <margin> tag to add margins to the text. If you only want to adjust the left or right margin, use <margin-left> or <margin-right>.
<margin=5em>Our margins used to be very wide.</margin> |
| Align | Use <align=left> and </align> to make text left justified. Use <align=center> and </align> to make text center justified (default). |
| Position | Use <pos=4.25> advances about 4.25 spaces. |
| Indentation | Similar to <pos> but persists across lines. Useful for bullets with word-wrapping. You can use pixels, font units, or percentages.
<align=left> 1. <indent=15%>It is useful for things like bullet points.</indent> 2. <indent=15%>It is handy.</indent> </align> |
| Line Indentation | <line-indent=15%> to insert a horizontal space directly after the tag. Only affects manual line breaks, not word-wrapped lines. |
| Size | Use <size=36> to set point size to 36. <size=+18> to increase the point size by 18 points. <size=-14> to decrease the point size by 14 points. |
| Lowercase, Uppercase, and Smallcaps | You can alter capitalization with the following tags:
<lowercase>Do not press!</lowercase> <uppercase>Do not press!</uppercase> <smallcaps>Do not press!</smallcaps> |
| Color | <color=red> to set the color to red. Supported colors are black, blue, green, orange, purple, red, white, and yellow. <color=#FF8000> or any other hexadecimal code to define a color. </color> to end the color tag. Color also supports an alpha channel, such as <color=#FF000088> for semitransparent red. |
| Alpha | <alpha=#88> or similar hexadecimal code to change only the transparency.
</alpha> to end the alpha tag. |
| Mark | Used to highlight text within the sign.
<margin=2em>Text <mark=#ffff00aa>can be marked</mark> with an overlay.</margin> |
| Character Spacing | <cspace=1em> to adjust the character spacing.
</cspace> reverts to the default character spacing. |
| Line Height | <line-height=50%> to manually adjust spacing between lines. You can use pixels, font units, or percentages.
</line-height> reverts to the default line height. |
