flipTokenX

From RPTools Wiki
Revision as of 09:58, 24 November 2024 by Full Bleed (talk | contribs) (Updated "map" parameter to "mapRef" in Usage and Parameters.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

flipTokenX() 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
Flip the current token image horizontally like the right-click menu option.

Usage

flipTokenX()
flipTokenX(tokenRef)
flipTokenX(tokenRef, mapRef)

Parameters

  • tokenRef - Either the token id or Token Name of the token to change
  • mapRef - 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.


Returns 0

Example

Flip the current token horizontally.
[h: flipTokenX()]

Flip the "Stairs Down" token on map "Level 1".

[h: flipTokenX("Stairs Down", "Level 1")]

Clear flipped status.

[h, if(isFlippedX() == 1):flipTokenX()]

See Also

Version Changes

  • 1.10.0 - Added function.