getTokenImage: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<source" to "<syntaxhighlight") |
No edit summary |
||
Line 14: | Line 14: | ||
'''Parameters''' | '''Parameters''' | ||
{{param|size|OPTIONAL: The size in pixels the image should be returned as. If a blank string "", no size adjustment is done. Defaults to "".}} | {{param|size|OPTIONAL: The size in pixels the image should be returned as. If a blank string "", no size adjustment is done. Defaults to "".}} | ||
{{param|id|OPTIONAL: The token {{code|id}} of the token for which you want to retrieve the token image, defaults to the [[Current Token]]. }} | {{param|id|OPTIONAL: The token {{code|id}} of the token for which you want to retrieve the token image, defaults to the [[Current Token]]. Will also work with [[getTokenName|Token Name]] }} | ||
{{param|mapname|OPTIONAL: The name of the map to find the token. Defaults to the current map.}} | {{param|mapname|OPTIONAL: The name of the map to find the token. Defaults to the current map.}} | ||
Revision as of 00:07, 9 May 2024
getTokenImage() Function
Returns the asset id of the image for the for the Current Token.
Usage
getTokenImage()
getTokenImage(size)
getTokenImage(size, id)
getTokenImage(size, id, mapname)
Parameters
size
- OPTIONAL: The size in pixels the image should be returned as. If a blank string "", no size adjustment is done. Defaults to "".id
- OPTIONAL: The tokenid
of the token for which you want to retrieve the token image, defaults to the Current Token. Will also work with Token Namemapname
- OPTIONAL: The name of the map to find the token. Defaults to the current map.
Examples
To display the image for the current token.
<img src='[r:getTokenImage()]'></img>
To get the image of any token using its id and the token roll option.
[h, token(tokenId): imgAsset = getTokenImage()]
See Also
Version Changes
- 1.5.4 - Added
id
andmapname
parameter options.