A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
PixoCoreSettings.h
Go to the documentation of this file.
1// Copyright(c) 2018 PixoVR, LLC. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UObject/NoExportTypes.h"
7#include "PixoCoreSettings.generated.h"
8
13UCLASS(Config = Game, DefaultConfig)
14class UPixoCoreSettings : public UObject
15{
18 UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "IP address for the Test Server", ToolTip = "Specify here the IP address of the Test Server."))
19 FString TestServerIP;
20
21 UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "The map that follows after the login", ToolTip = "Specify here the map that follows after the login."))
22 FName MapAfterLogin;
23
24 UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "Activate possibility of offline mode", ToolTip = "Select this flag if you want to use offline mode in your app."))
25 bool OfflineMode;
27 UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "Time in hours user can be in offline mode", ToolTip = "Specify here time in hours user can be in offline mode."))
28 float OfflineTime;
29
30 UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "Map open after intro video", ToolTip = "Specify here the name of the level to open after into video have been played"))
31 FName MapAfterIntro;
32};
Pixo Core Settings This class represents the settings for the Pixo Core module. It is used to configu...
FName MapAfterIntro
UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "Map open after intro vi...
FString TestServerIP
UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "IP address for the Test...
bool OfflineMode
UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "Activate possibility of...
FName MapAfterLogin
UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "The map that follows af...
float OfflineTime
UPROPERTY(Config, EditAnywhere, Category = "PixoCore", Meta = (DisplayName = "Time in hours user can ...