Sign
A single line of text
Signâ
The Sign feature allows you to display one line of text. Unlike Richtext, though, they can be used as a hyperlink.

Editorâ

Textâ
The text you want to display.
Font Sizeâ
The size of the font.
Blend modeâ
This is used to determine how the text is blended with whatever is behind it. The available options are Combine, Multiply, and Screen.
Invertedâ
When ticked, the text will be white on a black background, rather than the other way around.
Hyperlinkâ
A link that, when clicked on, will popup a warning message before letting the player go to the desired link.
Font Sizeâ
Self-explanatory
Colorâ
Color of the font
Font Sizeâ
Color of the background
Scripting Propertiesâ
Scripting Properties {.tabset}â
textâ
String;
get()â
feature.get('text')
// returns: "my line of text"
set()â
feature.set({'text':"my line of text"})
defaultâ
""
linkâ
String;
get()â
feature.get('link')
// returns: "https://..."
set()â
feature.set({'link':"https://..."})
defaultâ
""
fontSizeâ
Integer;
get()â
feature.get('fontSize')
// returns: 25
set()â
feature.set({'fontSize':25})
defaultâ
25
colorâ
String-hexadecimal;
get()â
feature.get('color')
// returns: "#00000"
set()â
feature.set({'color':"#fcba03"})
defaultâ
"#00000"
backgroundâ
String-hexadecimal;
get()â
feature.get('background')
// returns: "#00000"
set()â
feature.set({'background':"#fcba03"})
defaultâ
"#fffff"
typeâ
String;
get()â
feature.get('type')
/* or */
feature.type
// returns: 'sign'