Navigation
API > API/Plugins > API/Plugins/ConcertReplicationScripting
| Name | UConcertReplicationBlueprintFunctionLibrary |
| Type | class |
| Header File | /Engine/Plugins/Developer/Concert/ConcertScripting/ConcertReplicationScripting/Source/ConcertReplicationScripting/Public/ConcertReplicationBlueprintFunctionLibrary.h |
| Include Path | #include "ConcertReplicationBlueprintFunctionLibrary.h" |
Syntax
UCLASS (BlueprintType)
class UConcertReplicationBlueprintFunctionLibrary : public UBlueprintFunctionLibrary
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UBlueprintFunctionLibrary → UConcertReplicationBlueprintFunctionLibrary
Classes
| Name | Remarks |
|---|---|
| FPropertyChainPredicate |
Functions
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static TArray< FConcertPropertyChainWrapper > GetAllProperties
(
const TSubclassOf< UObject >& Class |
Gets all properties in the class that are valid for replicating. | ConcertReplicationBlueprintFunctionLibrary.h |
|
static TArray< FConcertPropertyChainWrapper > GetChildProperties
(
const FConcertPropertyChainWrapper& Parent, |
Returns all child properties of Parent that are valid for replicating. | ConcertReplicationBlueprintFunctionLibrary.h |
|
static TArray< FConcertPropertyChainWrapper > GetPropertiesIn
(
const TSubclassOf< UObject >& Class, |
Builds an array of property paths that pass the given filter. | ConcertReplicationBlueprintFunctionLibrary.h |
|
static FName GetPropertyFromLeaf
(
const FConcertPropertyChainWrapper& Path, |
Gets the property at Index starting from the leaf most property. | ConcertReplicationBlueprintFunctionLibrary.h |
|
static FName GetPropertyFromRoot
(
const FConcertPropertyChainWrapper& Path, |
Gets the property at Index starting from the root most property. | ConcertReplicationBlueprintFunctionLibrary.h |
|
static const TArray< FName > & GetPropertyStringPath
(
const FConcertPropertyChainWrapper& Path |
Gets the path as string array. Example: ["RelativeLocation", "X"] | ConcertReplicationBlueprintFunctionLibrary.h |
|
static bool IsChildOf
(
const FConcertPropertyChainWrapper& ToTest, |
Checks whether ToTest is a child property of Parent. | ConcertReplicationBlueprintFunctionLibrary.h |
|
static bool IsDirectChildOf
(
const FConcertPropertyChainWrapper& ToTest, |
Checks whether ToTest is a direct child property of Parent. | ConcertReplicationBlueprintFunctionLibrary.h | |
static bool MakePropertyChainByLiteralPath
(
const TSubclassOf< UObject >& Class, |
Tries to make concert property chain by specifying a path manually. | ConcertReplicationBlueprintFunctionLibrary.h |
|
static FString ToString
(
const FConcertPropertyChainWrapper& PropertyChain |
Converts the the property to a string. | ConcertReplicationBlueprintFunctionLibrary.h |
|