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