sendToBack: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Applied Template:MacroFunction)
No edit summary
 
(10 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{MacroFunction
{{MacroFunction
|name=sendToBack
|name=sendToBack
|version=1.3b48
|description=
|description=
Moves the [[Token:Current Token|Current Token]] behind of all of the other [[Token:token|token]]s on the same [[Map:map layer|map layer]].
Adjust the z-order (or draw order) of the [[Token]] so that it is drawn before all other [[Token]]s on the same [[Introduction to Mapping#introduction to Mapping|Map Layer]], this has the effect of making the Token appear to be in back of the other [[Token]]s as it will be obscured by other [[Token]]s on the same [[Introduction to Mapping#introduction to Mapping|Map Layer]] in the same location.


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
sendToBack()
sendToBack(id)
sendToBack(id, mapname)
</syntaxhighlight>
'''Parameter'''
{{param|id|The token {{code|id}} or name of the token that has its z-order changed, defaults to the [[Current Token]]. {{TrustedParameter}} }}
{{param|mapname|The name of the map to find the token.  Defaults to the current map.}}
 
 
|examples=
Sends the [[Current Token]] to the lowest z-order.
<syntaxhighlight lang="mtmacro" line>
[h: sendToBack()]
[h: sendToBack()]
</source>
</syntaxhighlight>
 
Sends all of the selected tokens to the lowest z-order.
<syntaxhighlight lang="mtmacro" line>
[h: tokens = getSelected()]
[h, foreach(id, tokens, ""), code:
{
    [h: sendToBack(id)]
}]
</syntaxhighlight>
 
|also=
{{func|bringToFront}}
 
|changes=
{{change|1.3b51|Added {{code|id}} parameter option.}}
{{change|1.5.4|Added {{code|mapname}} parameter option.}}
 
}}
}}
[[Category:Token Function]]
[[Category:Token Function]]

Latest revision as of 21:10, 14 March 2023

sendToBack() Function

Introduced in version 1.3b48
Adjust the z-order (or draw order) of the Token so that it is drawn before all other Tokens on the same Map Layer, this has the effect of making the Token appear to be in back of the other Tokens as it will be obscured by other Tokens on the same Map Layer in the same location.

Usage

sendToBack()
sendToBack(id)
sendToBack(id, mapname)

Parameter

  • id - The token id or name of the token that has its z-order changed, 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.

Examples

Sends the Current Token to the lowest z-order.
[h: sendToBack()]

Sends all of the selected tokens to the lowest z-order.

[h: tokens = getSelected()]
[h, foreach(id, tokens, ""), code:
{
    [h: sendToBack(id)]
}]

See Also

Version Changes

  • 1.3b51 - Added id parameter option.
  • 1.5.4 - Added mapname parameter option.