getLights
getLights() Function
Usage
<syntaxhighlight lang="mtmacro" line> getLights() getLights(type) getLights(type, delim) getLights(type, delim, id) getLights(type, delim, id, mapname) </source>
Parameters
type
- The light source type, (e.g. "Generic", "D20"). If set to "*", all light sources are returned. Defaults to "*".delim
- The delimiter used to separate values in the string list. If set to "json", a JSON Array is returned. Defaults to ",".id
- The tokenid
of the token to change the light sources, defaults to the Current Token.Note: This parameter can only be used in a Trusted Macro.
mapname
- The name of the map to find the token. Defaults to the current map.
Examples
<syntaxhighlight lang="mtmacro" line> [getLights()] </source>
To get a string list of the light sources that the current token has on with the light source type of "Generic". <syntaxhighlight lang="mtmacro" line> [getLights("Generic")] </source>
Getting all lights from campaign properties
The information provided by getInfo can be used to extract all light source names defined in the campaign properties. The following provides all names in a JSON Array:
<syntaxhighlight lang="mtmacro" line>
[r: json.path.read(json.get(getInfo("campaign"), "light sources"), ".[*][*]['name']")]
</source>
To restrict the query to only one specific type of light sources, you can use the following and replace 'TYPE'
with the desired type (note that single quotes are needed for this string, because double quotes are already in use):
<syntaxhighlight lang="mtmacro" line>
[r: json.path.read(json.get(getInfo("campaign"), "light sources"), ".['TYPE'][*]['name']")]
Version Changes
- 1.3b49 - Added "json" delimiter option.
- 1.5.4 - Added
id
andmapname
parameter options.