Class ToggleFlow
Toggles the control flow with on and off triggers.
Inherited Members
Namespace: Unity.VisualScripting
Syntax
[UnitCategory("Control")]
[UnitOrder(18)]
public sealed class ToggleFlow : Unit, IUnit, IGraphElementWithDebugData, IGraphElementWithData, IGraphElement, IGraphItem, INotifiedCollectionItem, IDisposable, IPrewarmable, IAotStubbable, IIdentifiable
Properties
enter
Entry point to the toggle.
Declaration
[DoNotSerialize]
public ControlInput enter { get; }
Property Value
Type | Description |
---|---|
ControlInput |
exitOff
Triggered on entry if the flow is off.
Declaration
[DoNotSerialize]
[PortLabel("Off")]
public ControlOutput exitOff { get; }
Property Value
Type | Description |
---|---|
ControlOutput |
exitOn
Triggered on entry if the flow is on.
Declaration
[DoNotSerialize]
[PortLabel("On")]
public ControlOutput exitOn { get; }
Property Value
Type | Description |
---|---|
ControlOutput |
isOn
Whether the flow is currently on.
Declaration
[DoNotSerialize]
public ValueOutput isOn { get; }
Property Value
Type | Description |
---|---|
ValueOutput |
startOn
Whether the toggle should start in the on state.
Declaration
[Serialize]
[Inspectable]
[UnitHeaderInspectable("Start On")]
[InspectorToggleLeft]
public bool startOn { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
toggle
Trigger to toggle the flow through the toggle.
Declaration
[DoNotSerialize]
public ControlInput toggle { get; }
Property Value
Type | Description |
---|---|
ControlInput |
turnedOff
Triggered when the flow gets turned off.
Declaration
[DoNotSerialize]
public ControlOutput turnedOff { get; }
Property Value
Type | Description |
---|---|
ControlOutput |
turnedOn
Triggered when the flow gets turned on.
Declaration
[DoNotSerialize]
public ControlOutput turnedOn { get; }
Property Value
Type | Description |
---|---|
ControlOutput |
turnOff
Trigger to turn off the flow through the toggle.
Declaration
[DoNotSerialize]
[PortLabel("Off")]
public ControlInput turnOff { get; }
Property Value
Type | Description |
---|---|
ControlInput |
turnOn
Trigger to turn on the flow through the toggle.
Declaration
[DoNotSerialize]
[PortLabel("On")]
public ControlInput turnOn { get; }
Property Value
Type | Description |
---|---|
ControlInput |
Methods
CreateData()
Declaration
public IGraphElementData CreateData()
Returns
Type | Description |
---|---|
IGraphElementData |
Implements
Definition()
Declaration
protected override void Definition()