getTokenShape: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<source" to "<syntaxhighlight") |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 10: | Line 10: | ||
<syntaxhighlight lang="mtmacro" line> | <syntaxhighlight lang="mtmacro" line> | ||
getTokenShape() | getTokenShape() | ||
getTokenShape( | getTokenShape(tokenRef) | ||
getTokenShape( | getTokenShape(tokenRef, mapRef) | ||
</ | </syntaxhighlight> | ||
'''Parameters''' | '''Parameters''' | ||
{{param| | {{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token to check for the shape, defaults to the [[Current Token]].}}{{TrustedParameter}} | ||
{{param| | {{param|mapRef|The Name or ID of the map to find the token. Defaults to the current map.}} | ||
{{Note|Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.}} | |||
'''Result'''<br /> | '''Result'''<br /> | ||
Line 24: | Line 25: | ||
<syntaxhighlight lang="mtmacro" line> | <syntaxhighlight lang="mtmacro" line> | ||
[r: getTokenShape("Dragon")] | [r: getTokenShape("Dragon")] | ||
</ | </syntaxhighlight> | ||
Returns: | Returns: | ||
<syntaxhighlight lang="mtmacro" line> | <syntaxhighlight lang="mtmacro" line> | ||
TOP_DOWN | TOP_DOWN | ||
</ | </syntaxhighlight> | ||
|changes= | |changes= |
Latest revision as of 23:59, 14 May 2024
getTokenShape() Function
• Introduced in version 1.3b89
Retrieves the token's shape (top-down, circle, square).
Usage
getTokenShape()
getTokenShape(tokenRef)
getTokenShape(tokenRef, mapRef)
Parameters
tokenRef
- Either the tokenid
or Token Name of the token to check for the shape, defaults to the Current Token.Note: This parameter can only be used in a Trusted Macro.
mapRef
- The Name or ID of the map to find the token. Defaults to the current map.
Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.
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.