canSeeToken: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
canSeeToken(target) | canSeeToken(target) | ||
canSeeToken(target, source) | canSeeToken(target, source) | ||
canSeeToken(target, source, mapname) | |||
</source> | </source> | ||
'''Parameters''' | '''Parameters''' | ||
{{param|target|Either the token ID or name of the target token.}} | {{param|target|Either the token ID or name of the target token.}} | ||
{{param|source|Either the token ID or name of the source, i.e. viewing token.}} | {{param|source|Either the token ID or name of the source, i.e. viewing token.}} | ||
{{param|mapname|The name of the map to find the two tokens. Defaults to the current map.}} | |||
|example= | |example= | ||
Line 43: | Line 45: | ||
|changes= | |changes= | ||
{{change|1.5.4|Added {{code|mapname}} parameter option.}} | |||
}} | }} | ||
[[Category:Sight Function]] | [[Category:Sight Function]] | ||
[[Category:Token Function]] | [[Category:Token Function]] |
Revision as of 08:32, 18 August 2019
canSeeToken() Function
• Introduced in version 1.3b77
Returns a json array of the points visible on the target token from the source token as an enumerated list. Default source is Current Token. The enumerated list will contain zero to five of the following values:
- TOP_RIGHT
- BOTTOM_RIGHT
- TOP_LEFT
- BOTTOM_LEFT
- CENTER
Usage
canSeeToken(target)
canSeeToken(target, source)
canSeeToken(target, source, mapname)
Parameters
target
- Either the token ID or name of the target token.source
- Either the token ID or name of the source, i.e. viewing token.mapname
- The name of the map to find the two tokens. Defaults to the current map.
Example
<!-- Dragon token partially hidden by VBL from current token. -->
[r: canSeeToken("Dragon")]
<!-- Troll token completely hidden from Elf token. -->
[r: canSeeToken("Troll","Elf")]
<!-- Troll token visible to Hero token. -->
[r: canSeeToken("Troll","Token")]
Returns:
["TOP_LEFT", "TOP_RIGHT", "CENTER"]
[]
["TOP_LEFT", "BOTTOM_LEFT", "TOP_RIGHT", "BOTTOM_RIGHT", "CENTER"]
Version Changes
- 1.5.4 - Added
mapname
parameter option.