ProtoFlux:Read Dynamic Variable: Difference between revisions

From Resonite Wiki
Created the Read Dynamic Variable node page on the wiki.
 
Reworded quite a bit. Added links for Slot and DynamicVariableSpace component.
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{#Invoke:ProtoFlux|GenerateUI
{{#Invoke:ProtoFlux|GenerateUI
|Name=Read Dynamic Variable
|Name=Read Dynamic Variable
|Category=Wiki
|Category=Variables
|Inputs=
|Inputs=
[
[
Line 9: Line 9:
|Outputs=
|Outputs=
[
[
{"Name":"FoundValue", "Type":"Bool"}
{"Name":"FoundValue", "Type":"bool"},
{"Name":"Value", "Type":"Generic"}
{"Name":"Value", "Type":"Dummy"}
]
]
|}}
|}}


Read Dynamic Variable is a node that takes in a slot as a source and goes down the hierarchy to find the first dynamic space that contains the path specified, then returns the matching type's value if one is found. For more information, see [[Dynamic Variables]].
The <code>Read Dynamic Variable</code> node takes in a [[Slot]] as a source and goes down the hierarchy to find the first [[Component:DynamicVariableSpace|dynamic space]] that contains the path specified. This returns the matching type's value if one is found. For more information, see [[Dynamic Variables]].
 
{{Template:Note|Although you cannot jump or skip variable spaces using this node from your provided string path, you can however use multiple of these nodes in conjunction together and provide more path strings to get to where you want to search for in the hierarchy (best showcased when using Slots as your returning value).|information}}


== Inputs ==
== Inputs ==


=== Source ([[Slot]]) ===
=== Source ([[Type:Slot|Slot]]) ===


This is the source slot that this node reads from.
This is the source slot that this node reads from. If the slot for this isn't provided, the engine will default the source slot to the slot of the node itself.


=== Path ([[String]]) ===
=== Path ([[Type:String|String]]) ===


The string input to find where to read from.
The string input to find where to read from.
Line 28: Line 30:
== Outputs ==
== Outputs ==


=== FoundValue ([[:Bool]]) ===
=== FoundValue ([[Type:Bool|bool]]) ===


Whether the value we are searching for is found or not.
Whether the value we are searching for is found or not.
Line 35: Line 37:


The value that is found.
The value that is found.
[[Category:ProtoFlux:Variables:DynamicVariables]]

Latest revision as of 17:18, 16 April 2024

Read Dynamic Variable
Source
FoundValue
Path
Value
Variables

The Read Dynamic Variable node takes in a Slot as a source and goes down the hierarchy to find the first dynamic space that contains the path specified. This returns the matching type's value if one is found. For more information, see Dynamic Variables.

Although you cannot jump or skip variable spaces using this node from your provided string path, you can however use multiple of these nodes in conjunction together and provide more path strings to get to where you want to search for in the hierarchy (best showcased when using Slots as your returning value).

Inputs

Source (Slot)

This is the source slot that this node reads from. If the slot for this isn't provided, the engine will default the source slot to the slot of the node itself.

Path (String)

The string input to find where to read from.

Outputs

FoundValue (bool)

Whether the value we are searching for is found or not.

Value (Generic)

The value that is found.