Loading...
Searching...
No Matches
realvirtual.LogicStep_JumpOnSignal Class Reference
Logic step that conditionally jumps to another named step based on a signal value. More...
Inheritance diagram for realvirtual.LogicStep_JumpOnSignal:
 
  
| Public Attributes | |
| string | JumpToStep | 
| Name of the logic step to jump to when condition is met. | |
| Signal | Signal | 
| The signal to evaluate for the jump condition. | |
| bool | JumpOn | 
| Jump when signal equals this value (true or false) | |
|  Public Attributes inherited from realvirtual.LogicStep | |
| string | Name | 
| Name identifier for this logic step, used for jumps and debugging. | |
| float | State | 
| Current execution state as percentage (0-100) | |
| bool | StepActive | 
| True when this step is currently executing. | |
| bool | IsWaiting | 
| True when this step is waiting for a condition. | |
| bool | IsContainer | 
| True if this step is a container for other steps. | |
| Protected Member Functions | |
| new bool | NonBlocking () | 
| override void | OnStarted () | 
|  Protected Member Functions inherited from realvirtual.LogicStep | |
| void | OnStarted () | 
| virtual void | OnStartInit () | 
| void | NextStep () | 
| bool | NonBlocking () | 
| void | NextStep (string name) | 
| void | Start () | 
| Additional Inherited Members | |
|  Public Member Functions inherited from realvirtual.LogicStep | |
| void | StartStep () | 
| Starts the execution of this logic step. | |
|  Properties inherited from realvirtual.LogicStep | |
| bool | IsShowingRuntimeInfo  [get] | 
Detailed Description
Logic step that conditionally jumps to another named step based on a signal value.
This non-blocking step enables branching logic in automation sequences. If the signal matches the specified condition, execution jumps to the named step; otherwise continues normally.
Member Data Documentation
◆ JumpOn
| bool realvirtual.LogicStep_JumpOnSignal.JumpOn | 
Jump when signal equals this value (true or false)
◆ JumpToStep
| string realvirtual.LogicStep_JumpOnSignal.JumpToStep | 
Name of the logic step to jump to when condition is met.
◆ Signal
| Signal realvirtual.LogicStep_JumpOnSignal.Signal | 
The signal to evaluate for the jump condition.