885
edits
m (Created page with "__NOTOC__ {{AGIWiki}} The '''block''' command programmatically creates an invisible rectangular block to restrict screen object movement. block([[...") |
m |
||
Line 5: | Line 5: | ||
The '''block''' command programmatically creates an invisible rectangular block to restrict [[AGIWiki/Animated object|screen object]] movement. | The '''block''' command programmatically creates an invisible rectangular block to restrict [[AGIWiki/Animated object|screen object]] movement. | ||
== Syntax == | |||
block([[AGIWiki/Number|byt]] left, [[AGIWiki/Number|byt]] top, [[AGIWiki/Number|byt]] right, [[AGIWiki/Number|byt]] bottom); | |||
== Remarks == | |||
AGI expects the coordinates to be in upper-left to lower-right format. <code>left</code> must be less than or equal to <code>right</code> and <code>top</code> must be less than or equal to <code>bottom</code>, or the test will always fail. | |||
Objects on the screen are not allowed to cross the borders of the block (regardless of whether they are inside the block or outside), unless an [[AGIWiki/Ignore.blocks|ignore.blocks]] command has been issued for that object. | Objects on the screen are not allowed to cross the borders of the block (regardless of whether they are inside the block or outside), unless an [[AGIWiki/Ignore.blocks|ignore.blocks]] command has been issued for that object. | ||
edits