Wiki

Clone wiki

Mono:UI / Resources / Variables

Global Variables

List

mono_debug_silent

INTRODUCED: v0.1.0
LAST UPDATED: v0.1.0
DEFAULT VALUE: false

This is a boolean variable whose value decides whether errors are shown as error dialogs, or as console messages. The latter is the "silent" mode to which the name of the variable refers.

mono_focus

INTRODUCED: v0.1.0
LAST UPDATED: v0.1.0
DEFAULT VALUE: noone

This variable holds an instance id or noone, indicating which instance currently has focus.

__mono_themes

INTRODUCED: v0.1.0
LAST UPDATED: v0.1.0
DEFAULT VALUE: ds_map holding available Themes.

This variable keeps track of all defined Themes. It is not meant to be accessed manually! Use the provided functions to set and retrieve Themes.

__mono_defaults

INTRODUCED: v0.1.0
LAST UPDATED: v0.1.0
DEFAULT VALUE: ds_grid holding available Property defaults.

This variable keeps track of all defaults that have been set for Properties. It is not meant to be accessed manually! Use the provided functions to set and retrieve Properties.

__mono_defaults_for

INTRODUCED: v0.1.0
LAST UPDATED: v0.1.0
DEFAULT VALUE: ds_list holding available Property targets for which defaults can be set.

This variable keeps track of defined targets for default Property values. It is not meant to be accessed manually! Use the provided functions to set and retrieve Properties.

__mono_defaults_for_names

INTRODUCED: v0.1.0
LAST UPDATED: v0.1.0
DEFAULT VALUE: ds_list holding available Property targets for which defaults can be set.

This variable keeps track of the names of defined targets for default Property values. It is not meant to be accessed manually! Use the provided functions to set and retrieve Properties.

__mono_properties

INTRODUCED: v0.1.0
LAST UPDATED: v0.1.0
DEFAULT VALUE: ds_list holding defined Properties.

This variable keeps track of the names of defined properties. It is not meant to be accessed manually! Use the provided functions to set and retrieve Properties.

mono_load

INTRODUCED: v0.1.0
LAST UPDATED: v0.1.0
DEFAULT VALUE: undefined

This variable is only set when a Plan performs an event. It contains any arguments that were provided in the Plan. After the performed event ends, it is set to undefined.
This variable is NOT read-only. Be sure that you don't accidentally store data in it. Its value may not be kept.

See Also

Updated