Function library that allows access to the Omni Application Service via Blueprint.
#include <OmniApplicationService.h>
Inherits UBlueprintFunctionLibrary.
|
static void | OmniGetVersion (UObject *WorldContext, FFGetVersionDynamicDelegate OnGetVersionCallback, const FString &PackageName) |
| Retrieve version information.
|
|
static void | OmniGetLaunchDetails (UObject *WorldContext, FGetLaunchDetailsDynamicDelegate OnGetLaunchDetailsCallback) |
| When a player is invited to join another player in your game, they will receive and accept an invite in the Omni One Launcher.
|
|
static void | OmniGetSystemInfo (UObject *WorldContext, FGetSystemInfoDynamicDelegate OnGetSystemInfoCallback) |
| Retrieve system information data.
|
|
◆ OmniGetLaunchDetails()
static void UOmniApplicationServiceFunctions::OmniGetLaunchDetails |
( |
UObject * |
WorldContext, |
|
|
FGetLaunchDetailsDynamicDelegate |
OnGetLaunchDetailsCallback |
|
) |
| |
|
static |
When a player is invited to join another player in your game, they will receive and accept an invite in the Omni One Launcher.
This function provides the details needed to connect to the player that invited them. The data that is passed in is the data you provided when you created the invite.
- Parameters
-
WorldContext | Reference to the world context. |
OnGetLaunchDetailsCallback | A callback that will be executed when the service has retrieved the information. FString LaunchDetails is the parameter. |
◆ OmniGetSystemInfo()
static void UOmniApplicationServiceFunctions::OmniGetSystemInfo |
( |
UObject * |
WorldContext, |
|
|
FGetSystemInfoDynamicDelegate |
OnGetSystemInfoCallback |
|
) |
| |
|
static |
Retrieve system information data.
- Parameters
-
WorldContext | Reference to the world context. |
OnGetSystemInfoCallback | A callback that will be executed when the service has retrieved the information. UOmniSystemInfo* SystemInfo is the parameter. |
◆ OmniGetVersion()
static void UOmniApplicationServiceFunctions::OmniGetVersion |
( |
UObject * |
WorldContext, |
|
|
FFGetVersionDynamicDelegate |
OnGetVersionCallback, |
|
|
const FString & |
PackageName |
|
) |
| |
|
static |
Retrieve version information.
- Parameters
-
WorldContext | Reference to the world context. |
OnGetVersionCallback | A callback that will be executed when the service has retrieved the information. UOmniVersionData*, VersionData is the parameter, can be null. |
PackageName | Name of the application package. |