Navigation
API > API/Plugins > API/Plugins/ReplicationGraph
References
| Module | ReplicationGraph |
| Header | /Engine/Plugins/Runtime/ReplicationGraph/Source/Public/ReplicationGraphTypes.h |
| Include | #include "ReplicationGraphTypes.h" |
Syntax
template<typename ValueType>
struct TClassMap
Remarks
Templatd struct for mapping UClasses to some data type. The main things this provides is that if a UClass* was not explicitly added, it will climb the class heirachy and find the best match (and then store this for faster lookup next time)
Variables
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | Returns if class has data in the map. | ||
| void | CountBytes
(
FArchive& Ar |
||
| TMap< FObjectKey, ValueType >::TIterator | |||
| void | |||
| const ValueType * | FindWithoutClassRecursion
(
UClass* Class |
Just finds element. Does not climb class hierarchy is explicit entry is not found. | |
| ValueType * | |||
| ValueType & | GetChecked
(
UClass* Class |
Returns ClassInfo for a given class. | |
| void | Reset () |
||
| void | Sets class info for a given class. Call this in your Replication Graphs setup |