setTokenHeight: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 10: Line 10:
<source lang="mtmacro" line>
<source lang="mtmacro" line>
setTokenHeight(size, id)
setTokenHeight(size, id)
setTokenHeight(size, id, mapname)
</source>
</source>


Line 15: Line 16:
{{param|size|grid size of the token}}
{{param|size|grid size of the token}}
{{param|id|The token {{code|id}} of the token to set its height.  Defaults to the [[Current Token]].}}{{TrustedParameter}}
{{param|id|The token {{code|id}} of the token to set its height.  Defaults to the [[Current Token]].}}{{TrustedParameter}}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}


|example=
|example=
Line 21: Line 24:
[r: setTokenHeight(150, "Dragon")]
[r: setTokenHeight(150, "Dragon")]
</source>
</source>
|changes=
{{change|1.5.4|Added {{code|mapname}} parameter option.}}


|also=
|also=

Revision as of 20:55, 15 August 2019

setTokenHeight() Function

Introduced in version 1.3b91
Sets the token's image height in pixels (boundary size).

Usage

setTokenHeight(size, id)
setTokenHeight(size, id, mapname)

Parameters

  • size - grid size of the token
  • id - The token id of the token to set its height. 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.

Example

[r: setTokenHeight(300, "Dragon")]
[r: setTokenHeight(150, "Dragon")]

See Also

Version Changes

  • 1.5.4 - Added mapname parameter option.