eraseMBL

From RPTools Wiki
Revision as of 19:13, 2 May 2021 by Kwvanderlinde (talk | contribs) (Created page with "{{MacroFunction |name=eraseMBL |proposed=false |trusted=true |version=1.9.0 |description= Erases Movement Blocking Layer (MBL) shapes from the '''Map''' MBL. This function do...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

eraseMBL() Function

 Note: This function can only be used in a Trusted Macro

Introduced in version 1.9.0
Erases Movement Blocking Layer (MBL) shapes from the Map MBL. This function does not affect Token MBL.

This function works the same as drawMBL() with the difference that drawMBL() draws the shapes on the Movement Blocking Layer and eraseMBL() erases them. For more examples go to the drawMBL() page.

Usage

eraseMBL(shapeArray)

Parameters

  • shapeArray - An array of one or more shapes as JSON objects.

Example

This example erases a (solid) block of MBL of 200x200 pixels starting at the origin of the map
[h:rectangle	= "{'shape':'rectangle','x':0,'y':0,'w':200,'h':200, 'fill':1}"]
[h:objectArrary	= json.append('',rectangle)]
[h:eraseMBL(objectArrary)]

See Also