Navigation
BlueprintAPI > BlueprintAPI/Utilities > BlueprintAPI/Utilities/Struct
Adds a node that breaks a 'Is Property Valid Params' into its member fields
Inputs
| Type | Name | Description |
|---|---|---|
| struct | Is Property Valid Params |
Outputs
| Type | Name | Description |
|---|---|---|
| object | Snapshot Actor | The actor saved in the snapshot |
| object | Level Actor | The actor equivalent to LevelActor: it exists in the world |
| struct | Snapshot Property Container | For passing to FProperty::ContainerPtrToValuePtr. This is either SnapshotActor or a subobject thereof. |
| struct | Level Property Containers | For passing to FProperty::ContainerPtrToValuePtr. This is either LevelPropertyContainers or a subobject thereof. |
| fieldpath | Property | The property that we may want to rollback. |
| string | Property Path | Each elements is the name of a subobject name leading to this property. The last element is the property name.The first element is either the name of a component or a struct/subobject in the root actor.Examples:- MyCustomComponent -> MyCustomStructPropertyName -> PropertyName- MyCustomComponent -> MyCustomStructPropertyName- StructPropertyNameInActor -> PropertyName |