isFlippedY: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page isFlippedY to IsFlippedY without leaving a redirect: Converting page title to first-letter uppercase) |
No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{MacroFunction | {{MacroFunction | ||
|name=isFlippedY | |name=isFlippedY | ||
|trusted=true | |trusted=true | ||
|version=1.10.0 | |version=1.10.0 | ||
Line 11: | Line 10: | ||
<syntaxhighlight lang="mtmacro" line> | <syntaxhighlight lang="mtmacro" line> | ||
isFlippedY() - current token | isFlippedY() - current token | ||
isFlippedY( | isFlippedY(tokenRef) - specify token by name or ID | ||
isFlippedY( | isFlippedY(tokenRef, map) - specify token and map | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{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.}} | |||
'''Parameters''' | '''Parameters''' | ||
{{param|token|Name | {{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token to check}} | ||
{{param|map|Map the token is located on}} | {{param|map|Map the token is located on}} | ||
Latest revision as of 23:59, 29 August 2024
isFlippedY() Function
Note: This function can only be used in a Trusted Macro
• Introduced in version 1.10.0
• Last checked for compatibility with version 1.10.0
Get the vertically flipped status for the current token image.
Usage
isFlippedY() - current token
isFlippedY(tokenRef) - specify token by name or ID
isFlippedY(tokenRef, map) - specify token and 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.
Parameters
tokenRef
- Either the tokenid
or Token Name of the token to checkmap
- Map the token is located on
Returns
0/1 - new flipped status
Example
Get the horizontal flipped status for the current token.
[h: flipped = isFlippedY()]
Clear flipped status.
[h, if(isFlippedY() == 1):flipTokenY()]
See Also
Version Changes
- 1.10.0 - Added function.