Omni One Unreal SDK 1.1.0
The Omni One Unreal SDK allows for games to interface with the Omni platform service.
Loading...
Searching...
No Matches
UOmniApplicationServiceFunctions

Description

Function library that allows access to the Omni Application Service via Blueprint.

#include <OmniApplicationService.h>

Inherits UBlueprintFunctionLibrary.

Methods

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.
 

Methods

◆ 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
WorldContextReference to the world context.
OnGetLaunchDetailsCallbackA 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
WorldContextReference to the world context.
OnGetSystemInfoCallbackA 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
WorldContextReference to the world context.
OnGetVersionCallbackA callback that will be executed when the service has retrieved the information. UOmniVersionData*, VersionData is the parameter, can be null.
PackageNameName of the application package.