Navigation
API > API/Plugins > API/Plugins/Mover
Data block containing mappings between names and commonly-used types, so that Blueprint-only devs can include custom data in their project's sync state or input cmds without needing native code changes. EXPERIMENTAL: this will be removed in favor of generic user-defined struct support. If this is for Blueprint usage, consider using FMoverUserDefinedDataStruct instead. If native, consider deriving your own FMoverDataStructBase type.
| Name | FMoverDictionaryData |
| Type | struct |
| Header File | /Engine/Plugins/Experimental/Mover/Source/Mover/Public/BlueprintDataExt.h |
| Include Path | #include "BlueprintDataExt.h" |
Syntax
USTRUCT (BlueprintType , Experimental)
struct FMoverDictionaryData : public FMoverDataStructBase
Inheritance Hierarchy
- FMoverDataStructBase → FMoverDictionaryData
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| BoolValues | TMap< FName, bool > | BlueprintDataExt.h |
|
|
| FloatValues | TMap< FName, double > | BlueprintDataExt.h |
|
|
| IntValues | TMap< FName, int32 > | BlueprintDataExt.h |
|
|
| NameValues | TMap< FName, FName > | BlueprintDataExt.h |
|
|
| RotatorValues | TMap< FName, FRotator > | BlueprintDataExt.h |
|
|
| VectorValues | TMap< FName, FVector > | BlueprintDataExt.h |
|
Functions
Public
Overridden from FMoverDataStructBase
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual FMoverDataStructBase * Clone () |
Return newly allocated copy of this FMoverDataStructBase. | BlueprintDataExt.h | |
virtual UScriptStruct * GetScriptStruct () |
Gets the type info of this FMoverDataStructBase. | BlueprintDataExt.h | |
virtual void Interpolate
(
const FMoverDataStructBase& From, |
Interpolates contained data between a starting and ending block. | BlueprintDataExt.h | |
virtual void Merge
(
const FMoverDataStructBase& From |
Merges contained data from a previous frame with that of the current frame. | BlueprintDataExt.h | |
virtual bool NetSerialize
(
FArchive& Ar, |
BlueprintDataExt.h | ||
virtual bool ShouldReconcile
(
const FMoverDataStructBase& AuthorityState |
Checks if the contained data is equal, within reason. | BlueprintDataExt.h | |
virtual void ToString
(
FAnsiStringBuilderBase& Out |
Get string representation of this struct instance | BlueprintDataExt.h |