Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/IVirtualizationSystem
Description
Initialize the system from the parameters given in the FInitParams structure. The system can only rely on the members of FInitParams to be valid for the duration of the method call, so if a system needs to retain information longer term then it should make it's own copy of the required data.
NOTE: Although it is relatively easy to access cached FConfigFiles, systems should use the one provided by InitParams to ensure that the correct settings are parsed.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Virtualization/VirtualizationSystem.h |
| Include Path | #include "Virtualization/VirtualizationSystem.h" |
bool Initialize
(
const FInitParams & InitParams
)
True if the system was initialized correctly, otherwise false. Note that if the method returns false then the system will be deleted and the default FNullVirtualizationSystem will be used instead.
Parameters
| Name | Remarks |
|---|---|
| InitParam | The parameters used to initialize the system |