Difference between revisions of "MC-Basic:element.MOTIONOVERLAP"

From SoftMC-Wiki
Jump to: navigation, search
m
m
Line 23: Line 23:
 
| Will execute the next command line even if motion hasn't completed yet
 
| Will execute the next command line even if motion hasn't completed yet
 
| will '''not''' execute the next command line if motion hasn't completed yet
 
| will '''not''' execute the next command line if motion hasn't completed yet
|}
 
{| class="wikitable" border="1"
 
|-
 
! header 1
 
! header 2
 
! header 3
 
|-
 
| row 1, cell 1
 
| row 1, cell 2
 
| row 1, cell 3
 
|-
 
| row 2, cell 1
 
| row 2, cell 2
 
| row 2, cell 3
 
 
|}
 
|}
 
    
 
    

Revision as of 14:15, 27 September 2018

Language: [[::MC-Basic:element.MOTIONOVERLAP|English]]

The MOTIONOVERLAP property defines a condition whether the interpreter will execute the next motion command.
It means that when the property is set to 0 (Off), the next motion command will be executed only if the previous motion command has completed.
If set to 1 (ON), the interpreter will execute the next motion command as usual.

{

Short form

<element>.MotionOverLap

Syntax

<element>.MotionOverLap = <value>
?<element>.MotionOverLap

Availability

Since version 4.18.3

Type

Long

Range

0 (OFF)

1 (ON)

Default

1

Scope

Configuration, Task or Terminal

Examples

Axis
A1.MotionOverLap = 1
?A1.MotionOverLap </br>

Group
G1.MotionOverLap = 1
?G1.MotionOverLap

See Also