ProtoFlux:Write: Difference between revisions

From Resonite Wiki
m fix types
m oops
 
Line 14: Line 14:
|Globals=
|Globals=
[
[
{"Name":"IVariable`2", "Type":"Variable"}
{"Name":"Variable", "Type":"IVariable`2"}
]
]
|}}
|}}

Latest revision as of 19:15, 9 February 2024

Write
*
OnWritten
Value
OnFail
Variable
null
Actions

Writes take Variable (Variable) as an input, and the type that Variable wraps will determine what Value (Generic) will take as a value. The node will then write Value (Generic) to the field Variable (Variable) wraps.

When it comes to Writes, you can drag any matching typed source onto the Variable field to set that as the variable target. When you want to write to a Local Variable Store, Data Model Variable Store, or a Store Variable Store, you can grab the Variable field on Writes nodes and then choose the one you want in your context menu. This can save considerable time spent trying to find the type you want in another node menu.

Writes are a way to change a specified value without driving it. Instead you can use Writes to change a value in a similar fashion to changing the value through the inspector. Using Writes helps with performance too, since the values provided to the node only evaluate for one game tick while the node is being impulsed vs a driver which evaluates every game tick. This can also be used to reduce the amount of times code is evaluated. If you have to search the entire root for your code to find a slot and then do an operation, using Writes with your operations will help with performance since you're only searching once and not every single game tick.

Inputs

* (Call)

Call this to write the value.

Value (Generic)

Value to write to the value pointed to by Variable (Variable)

Outputs

OnWritten (Continuation)

sends an impulse after * (Call) has been impulsed and the value has been written.

OnFail (Continuation)

sends an impulse after * (Call) has been impulsed and the value wasn't able to be written due to a missing target or a missing Variable (Variable) value

Globals

Variable (Variable Generic)

The Variable to write to.

Examples