ProtoFlux:Write Cloud Variable

From Resonite Wiki
Write Cloud Variable
*
OnRequest
Path
OnDone
VariableOwnerId
OnFail
Value
Cloud

Write Cloud Variable is a node that is able to write to cloud variables that are already defined. For more information on how to define the permissions/security of cloud variables, and how to create them, see Cloud Variables

Inputs

* (AsyncCall)

Will Write the cloud variable upon impulse. Is restricted by cloud variable rate limits.

Path (String)

The definition owner + "." + The variable name.
Examples: "G-Resonite.UserSettings.Color.Primary", "U-ProbablePrime.testing.bool"

VariableOwnerId (String)

The id of the person writing a value to the variable specified in Path.
Examples: "U-Frooxius", "U-Nexulan"

Value (Pseudo-generic)

The value you want to write to this cloud variable.
Examples: ColorX, float3, String, DateTime.

Outputs

OnRequest (SyncResumption)

An async impulse sent when the node has sent the request for the value to be written. This can be used to chain more asynchronous calls together to happen in parallel like more writing to other variable definitions.

OnDone (Call)

The impulse during which Value will have written the data.

OnFail (Call)

The impulse caused if the variable hit an error. including but not limited to: Invalid Path, improper permissions for the variable definition in Path, Invalid userID.