ProtoFlux:Fire While True: Difference between revisions

From Resonite Wiki
m add to category
m fix types
 
(5 intermediate revisions by 3 users not shown)
Line 8: Line 8:
|Outputs=
|Outputs=
[
[
{"Name":"OnUpdate", "Type":"Impulse"}
{"Name":"OnUpdate", "Type":"Call"}
]
]
|Globals=
|Globals=
Line 23: Line 23:
== Inputs ==  
== Inputs ==  


=== Condition (bool) ===
=== Condition ([[Type:Bool|bool]]) ===
The value that needs to be true for this node to start sending impluses out of OnUpdate.
The value that needs to be true for this node to start sending impluses out of OnUpdate.


=== UpdatingUser (User): ===
By default it will be null, which will allow impulses even if UpdatingUser is null.
The User who will monitor the input Condition boolean and will handle sending the impulses across the network. If they don't see the value as true it won't fire, even if someone else does see it true.
 
=== SkipIfNull (Nullable<bool>) ===
TODO


== Outputs ==  
== Outputs ==  


=== OnUpdate (Impulse) ===
=== OnUpdate ([[Impulses|Call]]) ===
Will send impulses at the game tick rate of the user in UpdatingUser only while UpdatingUser sees Condition as true.
Will send impulses at the game tick rate of the user in UpdatingUser only while UpdatingUser sees Condition as true.
== Globals ==
=== UpdatingUser ([[Type:User|User]]): ===
The User who will monitor the input Condition boolean and will handle sending the impulses. If they don't see the value as true it won't fire, even if someone else does see it true.
=== SkipIfNull ([[Type:Nullable`1|Nullable<bool>]]) ===
The value that controls whether or not impulses from the output are sent if the UpdatingUser input is null.


[[Category:ProtoFlux:Flow]]
[[Category:ProtoFlux:Flow]]

Latest revision as of 20:15, 9 February 2024

Fire While True
Condition
OnUpdate
UpdatingUser
null
SkipIfNull
null
Flow


Usage

You can use this node for constantly firing a gun, or something where a drive cannot be used and you need to create events every game tick while a value is true.

Inputs

Condition (bool)

The value that needs to be true for this node to start sending impluses out of OnUpdate.

By default it will be null, which will allow impulses even if UpdatingUser is null.

Outputs

OnUpdate (Call)

Will send impulses at the game tick rate of the user in UpdatingUser only while UpdatingUser sees Condition as true.

Globals

UpdatingUser (User):

The User who will monitor the input Condition boolean and will handle sending the impulses. If they don't see the value as true it won't fire, even if someone else does see it true.

SkipIfNull (Nullable<bool>)

The value that controls whether or not impulses from the output are sent if the UpdatingUser input is null.