getTokenNativeWidth: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page GetTokenNativeWidth to getTokenNativeWidth: Converting page titles to lowercase)
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
getTokenNativeWidth()
getTokenNativeWidth()
getTokenNativeWidth(id)
getTokenNativeWidth(tokenRef)
getTokenNativeWidth(id, mapname)
getTokenNativeWidth(tokenRef, mapname)
</source>
</syntaxhighlight>


'''Parameters'''
'''Parameters'''
{{param|id|The token id of the token to check for its width, defaults to the [[Current Token]].}}{{TrustedParameter}}
{{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token to check for its width, defaults to the [[Current Token]].}}{{TrustedParameter}}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}
{{param|mapname|The name 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 23: Line 23:
|example=
|example=
Assuming a token called {{code|"Dragon"}}, with 120px native image width, medium size, on a 50px square grid , then:
Assuming a token called {{code|"Dragon"}}, with 120px native image width, medium size, on a 50px square grid , then:
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: getTokenWidth("Dragon")]
[r: getTokenWidth("Dragon")]
</source>
</syntaxhighlight>
returns:
returns:
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
120
120
</source>
</syntaxhighlight>


|changes=
|changes=

Latest revision as of 16:30, 14 May 2024

getTokenWidth() Function

Introduced in version 1.5.1
Retrieves the token's native image width in pixels (native size).

Usage

getTokenNativeWidth()
getTokenNativeWidth(tokenRef)
getTokenNativeWidth(tokenRef, mapname)

Parameters

  • tokenRef - Either the token id or Token Name of the token to check for its width, 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.
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 token's native (image) width in pixels.

Example

Assuming a token called "Dragon", with 120px native image width, medium size, on a 50px square grid , then:
[r: getTokenWidth("Dragon")]

returns:

120

See Also

Version Changes

  • 1.5.4 - Added mapname parameter option.