getTokenShape: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{MacroFunction | {{MacroFunction | ||
|name=getTokenShape | |name=getTokenShape | ||
Line 20: | Line 19: | ||
'''Result'''<br /> | '''Result'''<br /> | ||
The function returns the token's shape as a string value: {{code|" | The function returns the token's shape as a string value: {{code|"TOP_DOWN"}}, {{code|"CIRCLE"}}, {{code|"SQUARE"}}. | ||
|example= | |example= | ||
Get the token shape for the top down Dragon token. | |||
<source lang="mtmacro" line> | <source lang="mtmacro" line> | ||
[ | [r: getTokenShape("Dragon")] | ||
</source> | </source> | ||
Returns: | Returns: | ||
<source lang="mtmacro" line> | <source lang="mtmacro" line> | ||
TOP_DOWN | |||
</source> | </source> | ||
|changes= | |changes= | ||
{{change|1.9.0|Top Down token shape will be returned as {{code|TOP_DOWN}} with underscore.}} | |||
{{change|1.5.4|Added {{code|mapname}} parameter option.}} | {{change|1.5.4|Added {{code|mapname}} parameter option.}} | ||
Revision as of 13:28, 11 May 2021
getTokenShape() Function
• Introduced in version 1.3b89
Retrieves the token's shape (top-down, circle, square).
Usage
getTokenShape()
getTokenShape(id)
getTokenShape(id, mapname)
Parameters
id
- The token id of the token to check for the shape, 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.
Result
The function returns the token's shape as a string value: "TOP_DOWN"
, "CIRCLE"
, "SQUARE"
.
Example
Get the token shape for the top down Dragon token.
[r: getTokenShape("Dragon")]
Returns:
TOP_DOWN
See Also
Version Changes
- 1.9.0 - Top Down token shape will be returned as
TOP_DOWN
with underscore. - 1.5.4 - Added
mapname
parameter option.