Skip to main content
Overview > Inworld Node > Inworld Node Get Runtime Data Class: UInworldNode_GetRuntimeData | Inherits from: UInworldNode_Custom A getter node that retrieves runtime data from the process context by key. This node takes no inputs and produces a data handle output containing the requested runtime data. It is a getter node — it can act as a graph starting point without requiring upstream connections. The retrieved data type is configured in the node’s properties. Inworld Node Get Runtime Data Input Types:
  • None (getter node)
Output Types:
  • FInworldDataHandle (The requested runtime data wrapped in a data handle)

Properties

PropertyTypeDescription
RuntimeDataKeyFNameThe key used to look up the data in the process context
DataTypeEInworldGetRuntimeDataTypeThe expected type of the retrieved data
StructTypeUScriptStruct*The struct type to expect — visible when DataType is Struct
ObjectTypeTSubclassOf<UObject>The object class to expect — visible when DataType is Object

Data Types

EInworldGetRuntimeDataType controls how the retrieved data is interpreted:
ValueDescription
StructStructure data (default)
ObjectUObject reference
BooleanBool value
IntegerInt32 value
FloatFloat value