Navigation
API > API/Plugins > API/Plugins/InterchangeDispatcher
References
| Module | InterchangeDispatcher |
| Header | /Engine/Plugins/Interchange/Runtime/Source/Dispatcher/Public/InterchangeCommands.h |
| Include | #include "InterchangeCommands.h" |
Syntax
class DispatcherCommandVersion
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | FromString
(
const FString& VersionStr, |
||
| bool | LWCDisabled version tell if the code was compile with serialization compatibility. | ||
| int32 | GetMajor () |
Major version should be updated when there is an existing API that has been change. | |
| int32 | GetMinor () |
Minor version must be updated when there is an addition to the API. | |
| int32 | GetPatch () |
Patch version should be update if there is some bug fixes in the private code. | |
| bool | IsAPICompatible
(
int32 Major, |
We consider having the same major and minor version will make the API fully compatible. | |
| FString | ToString () |
Return the version in string format "Major.Minor.Patch" |