getTokenPortrait: Difference between revisions
Jump to navigation
Jump to search
m (→Examples) |
No edit summary |
||
(13 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
= | {{MacroFunction | ||
|name=getTokenPortrait | |||
|description= | |||
Returns the [[Asset ID|asset id]] of the portrait image for the for the [[Current Token]]. | |||
|usage= | |||
<syntaxhighlight lang="mtmacro" line> | |||
getTokenPortrait() | |||
getTokenPortrait(size) | |||
getTokenPortrait(size, tokenRef) | |||
getTokenPortrait(size, tokenRef, mapRef) | |||
</syntaxhighlight> | |||
'''Parameters''' | |||
{{param|size|OPTIONAL: The size the picture should be returned as. If a blank string "", no size adjustment is done. Defaults to "".}} | |||
[ | {{param|tokenRef|OPTIONAL: Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token for which you want to retrieve the token image, defaults to the [[Current Token]]. }} | ||
{{param|mapRef|OPTIONAL: 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.}} | |||
|examples= | |||
To display the image for the current [[Token]]. | |||
To display the image for the current [[Token | <syntaxhighlight lang="mtmacro" line> | ||
< | |||
<img src='[r:getTokenPortrait()]'></img> | <img src='[r:getTokenPortrait()]'></img> | ||
</ | </syntaxhighlight> | ||
|changes={{change|1.5.4|Added {{code|id}} and {{code|mapname}} parameter options.}} | |||
}} | |||
===Version Notes=== | |||
In versions before v1.3b51 an attempt to retrieve a portrait image when none was present produced an error. In 1.3b51 and later builds the function returns an empty string if no portrait is associated with the image. | |||
[[Category:Token Function]] |
Latest revision as of 23:59, 14 May 2024
getTokenPortrait() Function
Returns the asset id of the portrait image for the for the Current Token.
Usage
getTokenPortrait()
getTokenPortrait(size)
getTokenPortrait(size, tokenRef)
getTokenPortrait(size, tokenRef, mapRef)
Parameters
size
- OPTIONAL: The size the picture should be returned as. If a blank string "", no size adjustment is done. Defaults to "".tokenRef
- OPTIONAL: Either the tokenid
or Token Name of the token for which you want to retrieve the token image, defaults to the Current Token.mapRef
- OPTIONAL: 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.
Examples
To display the image for the current Token.
<img src='[r:getTokenPortrait()]'></img>
Version Changes
- 1.5.4 - Added
id
andmapname
parameter options.
Version Notes
In versions before v1.3b51 an attempt to retrieve a portrait image when none was present produced an error. In 1.3b51 and later builds the function returns an empty string if no portrait is associated with the image.